/v1/character
Character 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/vndb-api/v1/character" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vndb-api/v1/character", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vndb-api/v1/character");
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/vndb-api/v1/character",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"character": {
"id": "c44",
"age": null,
"sex": "m",
"url": "https://vndb.org/c44",
"vns": [
{
"id": "v11",
"role": "side",
"title": "Fate/stay night"
},
{
"id": "v50",
"role": "side",
"title": "Fate/hollow ataraxia"
}
],
"name": "Kuzuki Souichirou",
"image": "https://t.vndb.org/ch/46/46.jpg",
"height": 180,
"aliases": [],
"original": "葛木 宗一郎",
"blood_type": null,
"description": "Kuzuki Souichirou is the strict homeroom instructor of [url=/c34]Rin's[/url] class. He primarily lectures on World History, though he also holds classes in Ethics. A well-built man with angular glasses, Kuzuki is well respected among staff and students, but he is widely regarded as austere and impersonal.\n\n[Edited from [url=http://en.wikipedia.org/wiki/List_of_Fate/stay_night_characters]Wikipedia[/url]]"
}
},
"meta": {
"timestamp": "2026-06-07T16:46:51.863Z",
"request_id": "b8246d50-7dc5-4c52-858a-1cd266929cf1"
},
"status": "ok",
"message": "Character retrieved successfully",
"success": true
}