Skip to content

GetPerson

Bartłomiej Buchała edited this page Sep 11, 2019 · 5 revisions

GetPerson

Return person with given MAL id. This method parses item data by ID from https://myanimelist.net/person/{id}

Parameters

GetPerson(Int64 id)

Type Name Summary
Int64 id MAL id of person.

Usage

// Initialize JikanWrapper
IJikan jikan = new Jikan();
// Send request for Hayao Miyazaki
Person hayaoMiyazaki = await jikan.GetPerson(1870);

// List Miyazaki anime on output
foreach (var staffPosition in hayaoMiyazaki.AnimeStaffPositions)
{
    Console.WriteLine("Anime: " + staffPosition.Anime.Name + ", role: " + staffPosition.Role);
}

Person Object Properties

GetPerson request return an Person object. Check schema page for more details.

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