Aller au contenu
GET /v1/digimon

A Digimon by id or exact name

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/digimon-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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)",
   
…