Jikan Versions Save

Unofficial MyAnimeList PHP+REST API which provides functions other than the official API

v4.0.9

1 month ago

They will most likely revert this change in a few days so the previous version will continue to work, however it is recommended to update to this version as it parses score and scoredBy from a the statistics panel on the left instead.

Full Changelog: https://github.com/jikan-me/jikan/compare/v4.0.8...v4.0.9

v4.0.8

6 months ago
  • Parser bug fixes for club member's image URLs and club staff

Full Changelog: https://github.com/jikan-me/jikan/compare/v4.0.7...v4.0.8

v4.0.7

7 months ago

v4.0.6

9 months ago

v4.0.5

1 year ago
  • Fixes tests
  • Fixes #516
  • Fixes external links bug

Full Changelog: https://github.com/jikan-me/jikan/compare/v4.0.4...v4.0.5

v4.0.4

1 year ago

What's Changed

Full Changelog: https://github.com/jikan-me/jikan/compare/v4.0.3...v4.0.4

v4.0.3

1 year ago

What's Changed

Full Changelog: https://github.com/jikan-me/jikan/compare/v4.0.2...v4.0.3

v4.0.2

1 year ago

What's Changed

Full Changelog: https://github.com/jikan-me/jikan/compare/v4.0.1...v4.0.2

v4.0.1

1 year ago
  • Fixes entry object returning user object

v4.0.0

1 year ago

What's Changed

Full Changelog: https://github.com/jikan-me/jikan/compare/v3.3.2...v4.0.0

Major Version Release

This is because the Review API has been completely revamped and is no longer backwards compatible.


Reviews

$data = $jikan->getReviews(
    new \Jikan\Request\Reviews\ReviewsRequest(
        \Jikan\Helper\Constants::MANGA, // type
        1, // page
        \Jikan\Helper\Constants::REVIEWS_SORT_MOST_VOTED, // sort
        true, // show spoilers
        true // show preliminary
    )
);

Parses: https://myanimelist.net/reviews.php?t=manga&spoiler=on&preliminary=on&sort=mostvoted

Anime/Manga Reviews

$data = $jikan->getAnimeReviews(
    new \Jikan\Request\Anime\AnimeReviewsRequest(
        1, // MAL ID
        1, // page
        \Jikan\Helper\Constants::REVIEWS_SORT_MOST_VOTED, //sort
        true, // show spoilers
        false // show preliminary
        )
);

Parses: https://myanimelist.net/anime/1/Cowboy_Bebop/reviews?sort=mostvoted&spoiler=on&preliminary=off

User Reviews

$data = $jikan->getUserReviews(
    new \Jikan\Request\User\UserReviewsRequest('Stark700', 1) // username and page
);

Parses: https://myanimelist.net/profile/Stark700/reviews