Ir al contenido
GET /v1/vn

Visual novel detail

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/vndb-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "visual_novel": {
            "id": "v2002",
            "url": "https://vndb.org/v2002",
            "tags": [
                "Blind Choices",
                "Chuunibyou Protagonist",
                "One True End",
                "Suspense",
                "Modern Day Akihabara",
                "Male Protagonist",
                "Group of Friends",
                "Protagonist with Voice Acting",
                "Built-in Encyclopedia",
                "Scientist Heroine",
                "Thriller",
                "Genius Heroine",
                "Inventor Heroine",
                "Date Display",
                "Tsundere Heroine"
            ],
            "image": "https://t.vndb.org/cv/19/77819.jpg",
            "title": "STEINS;GATE",
            "length": "Long (30–50h)",
            "rating": 90.2,
            "released": "2009-10-15",
            "alt_title": null,
            "languages": [
                "cs",
                "de",
                "en",
                "es",
                "hu",
                "it",
                "ja",
                "ko",
                "pl",
                "pt-br",
                "ru",
                "tr",
                "vi",
                "zh-Hans",
                "zh-Hant"
            ],
            "platforms": [
                "win",
                "ios",
                "and",
                "psp",
                "ps3",
                "ps4",
                "psv",
                "swi",
                "xb3"
            ],
            "votecount": 16265,
            "developers": [
                "NITRO PLUS",
                "MAGES.",
                "MAGES. Inc."
            ],
            "description": "[b]-Decide The Fate Of All Mankind-[/b]\nCAN YOU CHANGE THE COURSE OF FATE?\nAND SAVE THE ONES CLOSEST TO YOU?\n\nSteins;Gate follows a rag-tag band of tech-savvy young students who discover the means of changing the past via mail, using a modified microwave. Their experiments into how far they can go with their discovery begin to spiral out of control as they become entangled in a conspiracy surrounding SERN, the organisation behind the Large Hadron Collider, and John Titor who claims to be from a dystopian future.\n\n[From [url=https://store.steampowered.com/app/412830/]Steam[/url]]",
            "length_minutes": 2625
        }
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:51.725Z",
        "request_id": "fc256bdb-0edd-4c5d-a2a0-ed71d81fa04c"
    },
    "status": "ok",
    "message": "Visual novel retrieved successfully",
    "success": true
}