/v1/search
Search & filter Digimon
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/digimon-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/digimon-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/digimon-api/v1/search");
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/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"page": 0,
"count": 8,
"total": 8,
"results": [
{
"id": 34,
"name": "Greymon",
"image": "https://digi-api.com/images/digimon/w/Greymon.png"
},
{
"id": 396,
"name": "Greymon (Blue)",
"image": "https://digi-api.com/images/digimon/w/Greymon_(Blue).png"
},
{
"id": 730,
"name": "Greymon (X-Antibody)",
"image": "https://digi-api.com/images/digimon/w/Greymon_(X-Antibody).png"
},
{
"id": 1006,
"name": "Greymon (2010 Anime Version)",
"image": "https://digi-api.com/images/digimon/w/Greymon_(2010_Anime_Version).png"
},
{
"id": 1007,
"name": "Greymon (Ash)",
"image": "https://digi-api.com/images/digimon/w/Greymon_(Ash).png"
},
{
"id": 1008,
"name": "Greymon O",
"image": "https://digi-api.com/images/digimon/w/Greymon_O.png"
},
{
"id": 1009,
"name": "Greymon (Skull Knightmon)",
"image": "https://digi-api.com/images/digimon/w/Greymon_(Skull_Knightmon).png"
},
{
"id": 1425,
"name": "Greymon (Blue) (X-Antibody)",
"image": "https://digi-api.com/images/digimon/w/Greymon_(Blue)_(X-Antibody).png"
}
],
"page_size": 8,
"total_pages": 1
},
"meta": {
"timestamp": "2026-06-01T00:04:25.947Z",
"request_id": "9434fcdc-f534-4fd3-9cb7-49ac66fff8da"
},
"status": "ok",
"message": "Digimon searched",
"success": true
}