GET /cards/:language/:id

Endpoint

Returns a Card with the provided language and id.

§ Example Request

Retrieve the English Card of P-001.

GET https://api.heroi.cc/cards/en/P-001

{
    "data": {
        "type": "card",
        "id": "\/cards\/en\/P-001",
        "attributes": {
            "level": 3,
            "digivolution-requirements": [{
                "level": 2,
                "category": "digimon",
                "color": ["red"],
                "cost": 0
            }],
            "language": "en",
            "dp": 3000,
            "notes": "Promotion Pack Ver 0.0",
            "parallel-id": 0,
            "image": "https:\/\/images.heroi.cc\/cards\/en\/P-001.webp",
            "play-cost": 5,
            "form": "Rookie",
            "effect": "[On Play] Delete 1 of your opponent's Digimon with 3000 DP or less.",
            "rarity": "P",
            "category": "digimon",
            "attribute": "Vaccine",
            "color": ["red"],
            "number": "P-001",
            "name": "Agumon",
            "type": "Reptile"
        },
        "relationships": {
            "alternate-arts": {
                "data": [{
                    "type": "card",
                    "id": "\/cards\/en\/P-001_P1"
                }, {
                    "type": "card",
                    "id": "\/cards\/en\/P-001_P2"
                }]
            },
            "international-arts": {
                "data": [{
                    "type": "card",
                    "id": "\/cards\/ja\/P-001"
                }, {
                    "type": "card",
                    "id": "\/cards\/ja\/P-001_P1"
                }, {
                    "type": "card",
                    "id": "\/cards\/ko\/P-001"
                }, {
                    "type": "card",
                    "id": "\/cards\/zh-Hans\/P-001"
                }, {
                    "type": "card",
                    "id": "\/cards\/zh-Hans\/P-001_P1"
                }]
            },
            "releases": {
                "data": [{
                    "type": "release",
                    "id": "\/releases\/en\/p"
                }]
            }
        }
    },
    "included": [{
        "type": "card",
        "id": "\/cards\/en\/P-001_P1",
        "links": {
            "self": "https:\/\/api.heroi.cc\/cards\/en\/P-001_P1"
        },
        "meta": {
            "notes": "TAMER\u2019S EVOLUTION BOX2[PB-06]"
        }
    }, {
        "type": "card",
        "id": "\/cards\/en\/P-001_P2",
        "links": {
            "self": "https:\/\/api.heroi.cc\/cards\/en\/P-001_P2"
        },
        "meta": {
            "notes": "2nd Anniversary Set [PB-12E]"
        }
    }, {
        "type": "card",
        "id": "\/cards\/ja\/P-001",
        "links": {
            "self": "https:\/\/api.heroi.cc\/cards\/ja\/P-001"
        },
        "meta": {
            "notes": "\u30d7\u30ed\u30e2\u30fc\u30b7\u30e7\u30f3\u30d1\u30c3\u30afVer.0.0"
        }
    }, {
        "type": "card",
        "id": "\/cards\/ja\/P-001_P1",
        "links": {
            "self": "https:\/\/api.heroi.cc\/cards\/ja\/P-001_P1"
        },
        "meta": {
            "notes": "TAMER'S EVOLUTION BOX2 [PB-06]"
        }
    }, {
        "type": "card",
        "id": "\/cards\/ko\/P-001",
        "links": {
            "self": "https:\/\/api.heroi.cc\/cards\/ko\/P-001"
        },
        "meta": {
            "notes": "\ud504\ub85c\ubaa8\uc158 \ud329 Ver0.0"
        }
    }, {
        "type": "card",
        "id": "\/cards\/zh-Hans\/P-001",
        "links": {
            "self": "https:\/\/api.heroi.cc\/cards\/zh-Hans\/P-001"
        }
    }, {
        "type": "card",
        "id": "\/cards\/zh-Hans\/P-001_P1",
        "links": {
            "self": "https:\/\/api.heroi.cc\/cards\/zh-Hans\/P-001_P1"
        }
    }, {
        "type": "release",
        "id": "\/releases\/en\/p",
        "links": {
            "self": "https:\/\/api.heroi.cc\/releases\/en\/p"
        },
        "meta": {
            "name": "Promotion Card [P]"
        }
    }],
    "links": {
        "self": "https:\/\/api.heroi.cc\/cards\/en\/P-001"
    }
}