Cross Universe
Card data for the fan-made Cross Universe TCG
Cross Universe is a free fan-made trading card game, and this API returns full card data as JSON by card ID and language. Each record includes name, level, card type, attack/defense, types and structured effect text. Keyless with open CORS; the base path also serves card images.
GET https://crossuniverse.net/cardInfo/?lang=en&cardID=U00107
{
"cardID": "U00107",
"name": "Pandemic Rat",
"level": 1,
"cardType": "unit",
"attack": 100,
"defense": 100,
"types": [
"Dark",
"Beast",
"Curse"
]
}curl "https://crossuniverse.net/cardInfo/?lang=en&cardID=U00107"const res = await fetch("https://crossuniverse.net/cardInfo/?lang=en&cardID=U00107");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://crossuniverse.net/cardInfo/?lang=en&cardID=U00107")
print(res.json())/cardInfo/?lang=en&cardID=U00107PROBEDCard data for the fan-made Cross Universe TCG
/cardInfo/?limit=5CardInfo — documented GET route.
/cardInfo/?page=1CardInfo — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Cross Universe: common questions
Is Cross Universe free to use?
Yes — Cross Universe is a free games API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Cross Universe need an API key?
No — Cross Universe needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Cross Universe from the browser?
Yes — Cross Universe returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Cross Universe up right now?
As of our last scheduled check, Cross Universe is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.