Overview

The Digimon TCG API lets you search for cards from the Digimon Card Game, providing details like card names, types, and images from digimoncard.io. No authentication is required, making it instantly accessible for beginners. It is ideal for building deck-building tools or Digimon card databases.

Beginner Tip

Use the card name search parameter to find specific cards quickly. Card data is sourced from digimoncard.io, so names should match official card text.

Available Data

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

vehicle make and model
year and specifications
fuel economy
VIN decode data

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "make": "Toyota",
  "model": "Camry",
  "year": 2025,
  "engine": "2.5L 4-cylinder",
  "fuel_economy": {
    "city_mpg": 28,
    "highway_mpg": 39
  },
  "msrp": 28400
}

Field Reference

name The official name of the Digimon card.
type Card type such as Digimon, Tamer, or Option.
color The color attribute of the card (e.g., Red, Blue).
image_url URL pointing to the card artwork image.
cardnumber Official card number used to uniquely identify the card in the set.

Implementation Example

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
const url = "https://digimoncard.io/api-public/search.php?n=Agumon&series=Digimon+Card+Game&lang=en";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

404 Not Found The card name or search term does not match any card in the database.
✓ Verify the card name spelling against the official Digimon Card Game site and try a partial name search.
Empty results array No cards match the provided search criteria.
✓ Broaden your search by using fewer parameters or a shorter partial name.
CORS error in browser The API may not allow direct browser requests from all origins.
✓ Make API calls from a Node.js backend or proxy the requests through your own server.

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Games & Comics
Difficulty Beginner
Listing details not endpoint-verified

Similar APIs

View All →