Skip to content
GET /v1/meta

Service description & endpoints

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/lorcana-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}