BYTETOOLS

Digi-API

Free Digimon API with no key: Digimon with levels, attributes, types, evolution chains, skills and official artwork. Paginated. Tested curl example.

No API key requiredCORS enabledHTTPSFree tier

Endpoint tested and returned HTTP 200 on 2026-08-20

What is the Digi-API?

Digi-API is a free, key-free API providing a Digimon database — each Digimon with its level, attribute, type, fields, evolution chains, skills, descriptions and official artwork.

This is a well-structured franchise database rather than a simple image API. Records include the digivolution chains in both directions, which is the relational data that makes a Digimon reference actually useful.

It replaces the older digimon-api.vercel.app which returned only names and images. Digi-API's records carry levels, attributes, types and skills, so it supports real reference tooling.

Quick facts

Base URL
https://digi-api.com/api/v1
Authentication
No API key required.
Rate limit
No published hard limit; fair use expected.
Pricing
Free and open source.
CORS
Enabled — callable directly from browser JavaScript
Official docs
Read the docs

How to use the Digi-API

Every request below was executed against the live API on 2026-08-20, and the response shown is the real body it returned — not an illustration.

1. List Digimon

GET https://digi-api.com/api/v1/digimon?pageSize=1

curl
curl 'https://digi-api.com/api/v1/digimon?pageSize=1'
JavaScript (fetch)
const res = await fetch("https://digi-api.com/api/v1/digimon?pageSize=1");
if (!res.ok) throw new Error(`Request failed: ${res.status}`);
const data = await res.json();
console.log(data);
Python (requests)
import requests

res = requests.get("https://digi-api.com/api/v1/digimon?pageSize=1", timeout=20)
res.raise_for_status()
print(res.json())
Response — HTTP 200
{
  "content": [
    {
      "id": 1,
      "name": "Agumon",
      "href": "https://digi-api.com/api/v1/digimon/1",
      "image": "https://digi-api.com/images/digimon/w/Agumon.png"
    }
  ],
  "pageable": {
    "currentPage": 0,
    "elementsOnPage": 1,
    "totalElements": 1488,
    "totalPages": 1487,
    "previousPage": "",
    "nextPage": "https://digi-api.com/api/v1/digimon?pageSize=pageSize=1&page=1"
  }
}

Parameters

ParameterTypeRequiredDescription
digimonpathOptionalPaginated Digimon listing. digimon
digimon/<id-or-name>pathOptionalOne Digimon with full detail. digimon/agumon
pageSizeintegerOptionalResults per page. 20
pageintegerOptionalPage number, zero-indexed. 1
attribute / level / xAntibodystringOptionalFilters on the listing endpoint. level=Rookie

Response fields

contentarray
Digimon on this page, with id, name and image.
pageableobject
Pagination state — current page, elements, total pages.
(detail) levels / attributes / typesarray
Classification data.
(detail) descriptionsarray
Lore descriptions by language and source.
(detail) skillsarray
Attacks with descriptions.
(detail) priorEvolutions / nextEvolutionsarray
Digivolution chains in both directions.

What you can build with the Digi-API

  • Build a Digimon reference or field guide
  • Visualise digivolution chains
  • Create quizzes and fan tooling
  • Practise paginated API consumption with a clean dataset

Common errors and how to fix them

Listing gives summaries only

Full detail requires a per-Digimon request.

Fix: Fetch /digimon/<name> for skills, evolutions and descriptions.

Page numbering starts at 0

Pagination is zero-indexed.

Fix: The first page is page=0.

404 on a name

Names are lowercase.

Fix: Use agumon rather than Agumon, or query by numeric id.

Digi-API — frequently asked questions

Is Digi-API free?

Yes, completely free and open source with no API key.

Does it include evolution chains?

Yes, each Digimon lists both priorEvolutions and nextEvolutions, so you can traverse digivolution lines in either direction.

How is it different from the older Digimon API?

The older digimon-api.vercel.app returned only names, levels and images. Digi-API adds attributes, types, skills, descriptions and full evolution data.

Why does the listing not include skills?

Listing endpoints return summaries. Request an individual Digimon by name or id for the complete record.

Tools that pair with this API

Digi-API is an independent third-party service and is not affiliated with ByteTools or ByteVancer. Details on this page were verified on 2026-08-20; always check the official documentation before relying on this API in production, as terms and limits can change.