/v1/meta
Service description & endpoints
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/lorcana-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lorcana-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lorcana-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/lorcana-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"colors": [
"Amber",
"Amethyst",
"Emerald",
"Ruby",
"Sapphire",
"Steel"
],
"service": "lorcana-api",
"rarities": [
"Common",
"Uncommon",
"Rare",
"Super Rare",
"Legendary",
"Enchanted",
"Promo"
],
"endpoints": {
"GET /v1/set": "Cards in a set (set=).",
"GET /v1/card": "A single card by exact name (name=).",
"GET /v1/meta": "This document.",
"GET /v1/sets": "All Lorcana sets.",
"GET /v1/search": "Search/filter cards (name=, color=, type=, rarity=, set=, cost=, q=, page=, limit=)."
},
"description": "Disney Lorcana TCG card data via lorcana-api.com: search and filter the full card pool by name, colour/ink, type, rarity, cost, set and classification; fetch a single card by exact name; list the sets; and list the cards in a set. Each card includes its strength, willpower, lore, abilities, classifications, artwork and set. Real data, no key."
},
"meta": {
"timestamp": "2026-06-08T01:19:38.978Z",
"request_id": "db963bca-d622-4261-a825-a5c6ed988c0f"
},
"status": "ok",
"message": "Meta",
"success": true
}