Skip to content

Support for search by id #3

@123tris

Description

@123tris

It would be nice if you could use AnimeListEntry's id's to lookup information of an anime directly without returning a cumbersome result list. Something like:

API api = new MALAPI.API(username,password);
UserAnimeList list = api.UsersController.GetUserAnimeList(username);
api.SearchController.SearchForAnime(list.Animes[0].SeriesId);

instead of:

API api = new MALAPI.API(username,password);
UserAnimeList list = api.UsersController.GetUserAnimeList(username);
api.SearchController.SearchForAnime(list.Animes[0].SeriesTitle).Entries[0];

If you want to be able to quickly check the user-rating of anime within a user's MAL list I think this would be a lot nicer. And perhaps even faster. It's also more secure and safe

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions