Cross Universe

Card data for the fan-made Cross Universe TCG

🎮 GamesUNMONITOREDchecked 1h ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
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"
  ]
}
Call itcurl · fetch · python
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())
Endpoints · 3On scheduleFULL DOCS ↗
First rollup pending — GET /cardInfo/?lang=en&cardID=U00107 has been probed
GET/cardInfo/?lang=en&cardID=U00107PROBED

Card data for the fan-made Cross Universe TCG

GET/cardInfo/?limit=5

CardInfo — documented GET route.

GET/cardInfo/?page=1

CardInfo — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.