Skip to content

GetMangaReviews

Bartłomiej Buchała edited this page Jan 8, 2019 · 1 revision

GetMangaReviews

Returns collection of anime reviews. This method parses item data by ID from https://myanimelist.net/manga/{id}/{title}/reviews.

Parameters

GetMangaReviews(Int64 id)

Type Name Summary
Int64 id MAL id of manga.

GetMangaReviews(Int64 id, Int32 page)

Type Name Summary
Int64 id MAL id of manga.
Int32 page Index of page folding 20 records (e.g. 1 will return first 20 records, 2 will return record from 21 to 40 etc.)

Usage

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

// Send request for revies of "Berserk" manga
MangaReviews berserkReviews = await jikan.GetMangaReviews(2);

// Print reviewer username, overall score and helpful count of each review
foreach (var review in berserkReviews.Reviews)
{
Console.WriteLine("Reviewer username: " + review.Reviewer.Username + ", overall score: " + review.Reviewer.Scores.Overall + ",helpful count: " + review.HelpfulCount);
}

// Send request for revies of "Berserk" manga, second page
berserkReviews = await jikan.GetMangaReviews(2, 2);

MangaReviews Object Properties

GetMangaReviews request return an MangaReviews object, which contains collection of MangaReview object. Schema of the latter:

Type Name Summary
MangaReviewer Reviewer Reviewer.
String Content Review's content.
Nullable<DateTime> Date Date of review creation.
Nullable<Int32> HelpfulCount Number of times the review was marked as helpful.
Int64 MalId ID associated with MyAnimeList.
String URL Review's URL.

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