Vai al contenuto
GET /v1/search/vn

Search visual novels

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/vndb-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "more": false,
        "count": 10,
        "query": "steins;gate",
        "visual_novels": [
            {
                "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
            },
            {
                "id": "v17102",
                "url": "https://vndb.org/v17102",
                "tags": [
                    "Time Travel",
                    "Scientist Heroine",
                    "Death of Heroine",
                    "Blind Choices",
    
…