Skip to content

GetAnimeCharactersAsync

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

GetAnimeCharactersAsync

Returns collections of characters of anime with given MAL id. This method parses item data by ID from https://myanimelist.net/anime/{id}/characters

Parameters

GetAnimeCharactersAsync(Int64 id)

Type Name Summary
Int64 id MAL id of anime.

Usage

// Send request for episodes of "Cowboy Bebop" characters
var characters = async jikan.GetAnimeCharactersAsync(1);

// Print all characters names and their role (main or supporting).
foreach (var character in characters.Data)
{
	Console.WriteLine(character.Character.Name + " (" + character.Role + ")");
}

AnimeCharacter Object Properties

GetAnimeCharactersAsync request return a collection of AnimeCharacter objects.

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