Zum Inhalt springen
GET /v1/digimon

A Digimon by id or exact name

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/digimon-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "digimon": {
            "id": 1,
            "name": "Agumon",
            "image": "https://digi-api.com/images/digimon/w/Agumon.png",
            "types": [
                "Reptile"
            ],
            "fields": [
                "Deep Savers",
                "Dragon's Roar",
                "Metal Empire",
                "Nature Spirits",
                "Nightmare Soldiers",
                "Virus Busters"
            ],
            "levels": [
                "Child"
            ],
            "skills": [
                "Baby Flame",
                "Spitfire",
                "Cross Fight",
                "Surudoi Tsume",
                "Sharp Nail",
                "Baby Burner",
                "Triple Baby Flame",
                "Battle Hawk",
                "Kūchū Baby Flame",
                "Mach Jab",
                "Mach Jab Combo",
                "Dynamite Kick",
                "Uppercut",
                "Agumon Dive",
                "Wild Whip",
                "Final Claw",
                "Splash Kick",
                "Aerial Mach Jab"
            ],
            "attributes": [
                "Vaccine"
            ],
            "x_antibody": false,
            "description": "A Reptile Digimon with an appearance resembling a small dinosaur, it has grown and become able to walk on two legs. Its strength is weak as it is still in the process of growing, but it has a fearless and rather ferocious personality. Hard, sharp claws grow from both its hands and feet, and their power is displayed in battle. It also foreshadows an evolution into a great and powerful Digimon. Its Special Move is spitting a fiery breath from its mouth to attack the opponent (Baby Flame).",
            "release_date": "1997",
            "next_evolutions": [
                "Agnimon",
                "Agumon (Black) (X-Antibody)",
                "Agumon (X-Antibody)",
                "Agumon -Yuki no Kizuna-",
                "Airdramon",
                "Algomon (Adult)",
                "Angemon",
                "Ankylomon",
                "Bakemon",
                "Birdramon",
                "Black War Greymon",
                "Blitz Greymon",
                "Boarmon",
                "Centalmon",
                "Coatlmon",
                "Coelamon",
                "Cyclomon",
                "Dark Tyranomon",
                "Death-X-DORUgamon",
                "Devidramon",
                "Devimon",
                "Dinohumon",
                "Dinorexmon",
                "DORUgamon",
                "Ebidramon",
                "Flare Lizamon",
                "Garurumon",
                "Geo Greymon",
                "Geremon",
                "Golemon",
                "Gorimon",
                "Greymon",
                "Greymon (2010 Anime Version)",
                "Greymon (Blue)",
                "Greymon (X-Antibody)",
                "Growmon",
                "Growmon (Orange)",
   
…