Vai al contenuto
GET /v1/reviews

Community reviews — user, score, verdict, reactions, excerpt

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/myanimelist-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/myanimelist-api/v1/reviews" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/myanimelist-api/v1/reviews", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/myanimelist-api/v1/reviews");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/myanimelist-api/v1/reviews",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "count": 5,
        "mal_id": 52991,
        "source": "MyAnimeList (Jikan)",
        "reviews": [
            {
                "url": "https://myanimelist.net/reviews.php?id=519472",
                "date": "2024-03-24T02:03:00+00:00",
                "tags": [
                    "Not Recommended",
                    "Funny"
                ],
                "score": 4,
                "excerpt": "Style- Frieren doesn't have its own unique style in any way. It just feels like every other Fantasy/Isekai ever. and I know it's not an Isekai, but it certainly feels like it in a lot of ways. The characters are very uninteresting and forgettable, the ost is one of the most generic things I've ever heard, the directing is very basic and boring, and the world is also uninteresting and forgettable. It's ironic how the only intriguing location is one we never see on screen through the whole anime (",
                "verdict": "not_recommended",
                "username": "Trikkiez",
                "reactions": 5830,
                "is_spoiler": false
            },
            {
                "url": "https://myanimelist.net/reviews.php?id=519189",
                "date": "2024-03-22T12:40:00+00:00",
                "tags": [
                    "Recommended"
                ],
                "score": 10,
                "excerpt": "I feel so catered to. It feels like an eternity since I've been given such a phenomenal anime with a well thought out plot, great art and animation to accompany it, emotional thought provoking moments... more than that, it feels so mature in that it doesn't baby me with your typical anime tropes. No obnoxiously screaming kid protags, no overly ecchi scenes meant purely for fanservice, no moments where I have to groan and just deal with whatever stupidity is put before me-- Just a fun and emotion",
                "verdict": "recommended",
                "username": "chekkit",
                "reactions": 1513,
                "is_spoiler": false
            },
            {
                "url": "https://myanimelist.net/reviews.php?id=524673",
                "date": "2024-05-12T14:53:00+00:00",
                "tags": [
                    "Not Recommended",
                    "Funny"
                ],
                "score": 1,
                "excerpt": "If you don't understand the complex characters that elves are, then don't write a story about an elf protagonist. People, There's a reason why elves are portrayed as cold creatures devoid of emotions and empathy, it's because they've been around for hundreds to thousands of years. So while humans are slaves to their emotions which often compromises their decision making, elves on the other hand have lived for so long and have so much experience that they are able to see the bigger picture and re",
                "verdict": "not_recommended",
                "username": "GentlePro",
                "reactions": 669,
                "is
…