Vai al contenuto
GET /v1/meta

Reference types & usage notes

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "note": "The Digimon universe. /v1/digimon = a Digimon by id or exact name (e.g. name=agumon) with its level, types, attributes, fields, skills, descriptions and prior/next evolutions; /v1/search = search by name and filter by attribute, level, type or field (paged from page 0); /v1/reference = browse a taxonomy (type=levels|types|attributes|fields|skills).",
        "source": "digi-api.com",
        "endpoints": [
            "/v1/digimon",
            "/v1/search",
            "/v1/reference",
            "/v1/meta"
        ],
        "reference_types": [
            "levels",
            "types",
            "attributes",
            "fields",
            "skills"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:26.103Z",
        "request_id": "cd988516-8ee5-4621-9283-91d78338ba66"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}