Μετάβαση στο περιεχόμενο
GET /v1/characters

Characters with role, favourites and Japanese voice actor

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/myanimelist-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/myanimelist-api/v1/characters" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/myanimelist-api/v1/characters", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/myanimelist-api/v1/characters");
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/characters",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "count": 20,
        "total": 62,
        "mal_id": 52991,
        "source": "MyAnimeList (Jikan)",
        "platform": "MyAnimeList",
        "characters": [
            {
                "url": "https://myanimelist.net/character/184947/Frieren",
                "name": "Frieren",
                "role": "Main",
                "image": "https://cdn.myanimelist.net/images/characters/7/525105.jpg?s=1706604ec2ca141a172526b8dedf3177",
                "mal_id": 184947,
                "favorites": 32089,
                "voice_actor": {
                    "name": "Tanezaki, Atsumi",
                    "language": "Japanese"
                }
            },
            {
                "url": "https://myanimelist.net/character/188176/Fern",
                "name": "Fern",
                "role": "Main",
                "image": "https://cdn.myanimelist.net/images/characters/12/619183.jpg?s=15f45c66440c0e9843e2f0109f0c1aef",
                "mal_id": 188176,
                "favorites": 5797,
                "voice_actor": {
                    "name": "Ichinose, Kana",
                    "language": "Japanese"
                }
            },
            {
                "url": "https://myanimelist.net/character/188177/Stark",
                "name": "Stark",
                "role": "Main",
                "image": "https://cdn.myanimelist.net/images/characters/7/621924.jpg?s=ff623ff40dde15a769f879d87d6e7dcd",
                "mal_id": 188177,
                "favorites": 3696,
                "voice_actor": {
                    "name": "Kobayashi, Chiaki",
                    "language": "Japanese"
                }
            },
            {
                "url": "https://myanimelist.net/character/186854/Himmel",
                "name": "Himmel",
                "role": "Supporting",
                "image": "https://cdn.myanimelist.net/images/characters/16/621925.jpg?s=5faec0afd8c70ec30faa16d5e256baa6",
                "mal_id": 186854,
                "favorites": 4872,
                "voice_actor": {
                    "name": "Okamoto, Nobuhiko",
                    "language": "Japanese"
                }
            },
            {
                "url": "https://myanimelist.net/character/206725/Übel",
                "name": "Übel",
                "role": "Supporting",
                "image": "https://cdn.myanimelist.net/images/characters/9/543072.jpg?s=8a1e7b1b5acb4d902a9f39147e4209af",
                "mal_id": 206725,
                "favorites": 1693,
                "voice_actor": {
                    "name": "Hasegawa, Ikumi",
                    "language": "Japanese"
                }
            },
            {
                "url": "https://myanimelist.net/character/196825/Eisen",
                "name": "Eisen",
                "role": "Supporting",
                "image": "https://cdn.myanimelist.net/images/characters/13/523293.jpg?s=10921d054b41f3e5dd2ab5d6b46e2a2c",
                "mal
…