/v1/reference
Browse a taxonomy
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/digimon-api/v1/reference" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/digimon-api/v1/reference", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/digimon-api/v1/reference");
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/reference",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"type": "levels",
"count": 5,
"results": [
{
"id": 1,
"name": "Baby II"
},
{
"id": 2,
"name": "Adult"
},
{
"id": 3,
"name": "Perfect"
},
{
"id": 4,
"name": "Child"
},
{
"id": 5,
"name": "Baby I"
}
],
"description": "An Evolution Stage, also referred to as Level and Generation, is the level of development a Digimon is at."
},
"meta": {
"timestamp": "2026-06-01T00:04:26.035Z",
"request_id": "6f8a0130-e79d-47aa-9f72-ef3e5c0d1965"
},
"status": "ok",
"message": "Reference retrieved",
"success": true
}