Aller au contenu
GET /v1/author

Find manga authors/artists by name

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/mangaupdates-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "note": "MangaUpdates authors/artists matching a name — each with its author_id, name, page URL and the genres they are known for. Pass q (required) and limit (1-40). Live, cached ~5m.",
        "count": 15,
        "query": "Eiichiro Oda",
        "source": "MangaUpdates public v1 API (api.mangaupdates.com/v1/authors/search), keyless",
        "authors": [
            {
                "url": "https://www.mangaupdates.com/author/e5v2cyo/oda-eiichiro",
                "name": "ODA Eiichiro",
                "genres": [
                    "Shounen"
                ],
                "author_id": 30829461792
            },
            {
                "url": "https://www.mangaupdates.com/author/yhelzap/oda",
                "name": "Oda",
                "genres": [
                    "Doujinshi",
                    "Yaoi"
                ],
                "author_id": 75063064561
            },
            {
                "url": "https://www.mangaupdates.com/author/43g6vcb/takizawa-kai",
                "name": "TAKIZAWA Kai",
                "genres": [
                    "Seinen"
                ],
                "author_id": 8915722283
            },
            {
                "url": "https://www.mangaupdates.com/author/6humcga/kanzaki-hiro",
                "name": "KANZAKI Hiro",
                "genres": [
                    "Comedy",
                    "Drama",
                    "Romance"
                ],
                "author_id": 14140050058
            },
            {
                "url": "https://www.mangaupdates.com/author/gg91i47/kazufumi-oda",
                "name": "KAZUFUMI Oda",
                "genres": [
                    "Fantasy",
                    "School Life",
                    "Slice of Life"
                ],
                "author_id": 35811162871
            },
            {
                "url": "https://www.mangaupdates.com/author/t8f223c/oda-hiroshi",
                "name": "ODA Hiroshi",
                "genres": [
                    "Comedy",
                    "Seinen"
                ],
                "author_id": 63635707416
            },
            {
                "url": "https://www.mangaupdates.com/author/1q37371/oda-masaru",
                "name": "ODA Masaru",
                "genres": [
                    "Comedy",
                    "School Life"
                ],
                "author_id": 3754272493
            },
            {
                "url": "https://www.mangaupdates.com/author/86cnsot/oda-midori",
                "name": "ODA Midori",
                "genres": [
                    "Shoujo"
                ],
                "author_id": 17798321405
            },
            {
                "url": "https://www.mangaupdates.com/author/u8bcn50/oda-ryou",
                "name": "ODA Ryou",
                "genres": [
                    "Comedy",
                    "Josei"
                ],
                "author_id": 6
…