Skip to content

GetAnimeMoreInfoAsync

Bartłomiej Buchała edited this page Feb 14, 2022 · 1 revision

GetAnimeMoreInfoAsync

Returns additional information related to anime with given MAL id. This method parses item data by ID from https://myanimelist.net/anime/{id}/moreinfo (if exist).

Parameters

GetAnimeMoreInfoAsync(Int64 id)

Type Name Summary
Int64 id MAL id of anime.

Usage

// Initialize JikanWrapper
IJikan jikan = new Jikan();

// Send request for more info of "Cowboy Bebop"
var moreInfo = await jikan.GetAnimeMoreInfoAsync(1);

// Output -> "Suggested Order..."
Console.WriteLine("Additional info:" + moreInfo.Data.Info);

MoreInfo Object Properties

GetAnimeMoreInfoAsync request return an MoreInfo object. Schema:

General information

Home Page

Getting started

Using own instance of Jikan

Migrating to version 2.0

Rate limiting

Winforms issue

Methods

Anime

Characters

Club

Manga

People

Rankings

Season

Search

Users

Other

Jikan Metadata

Class Schema

Main Classes

Secondary Classes

Search related classes

Enumerations Schema

Clone this wiki locally