/v1/author
Author detail
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/mangadex-api/v1/author" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mangadex-api/v1/author", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mangadex-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/mangadex-api/v1/author",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"author": {
"id": "c705fb4e-5a7c-4dbc-b2e7-f593c988171d",
"name": "oda",
"links": {
"pixiv": null,
"twitter": null,
"website": null,
"youtube": null
},
"biography": null,
"image_url": null
}
},
"meta": {
"timestamp": "2026-06-07T16:46:54.763Z",
"request_id": "db253ea3-870e-48aa-9167-5c00e0f77374"
},
"status": "ok",
"message": "Author retrieved successfully",
"success": true
}