/v1/sets
All Lorcana sets
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/lorcana-api/v1/sets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lorcana-api/v1/sets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lorcana-api/v1/sets");
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/sets",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sets": [
{
"name": "Archazia's Island",
"set_id": "ARI",
"set_num": 7,
"released": "2025-03-07",
"total_cards": null
},
{
"name": "Azurite Sea",
"set_id": "AZS",
"set_num": 6,
"released": "2024-11-15",
"total_cards": null
},
{
"name": "Fabled",
"set_id": "FAB",
"set_num": 9,
"released": "2025-08-29",
"total_cards": null
},
{
"name": "Into the Inklands",
"set_id": "INK",
"set_num": 3,
"released": "2024-02-23",
"total_cards": null
},
{
"name": "Illumineer's Quest: Deep Trouble",
"set_id": "QU1",
"set_num": 4,
"released": "2024-05-17",
"total_cards": null
},
{
"name": "Rise of The Floodborn",
"set_id": "ROF",
"set_num": 2,
"released": "2023-11-17",
"total_cards": null
},
{
"name": "Reign of Jafar",
"set_id": "ROJ",
"set_num": 8,
"released": "2025-05-30",
"total_cards": null
},
{
"name": "Shimmering Skies",
"set_id": "SSK",
"set_num": 5,
"released": "2024-08-09",
"total_cards": null
},
{
"name": "The First Chapter",
"set_id": "TFC",
"set_num": 1,
"released": "2023-08-18",
"total_cards": null
},
{
"name": "Ursula's Return",
"set_id": "URS",
"set_num": 4,
"released": "2024-05-17",
"total_cards": null
},
{
"name": "Whispers in the Well",
"set_id": "WHI",
"set_num": 10,
"released": "2025-11-07",
"total_cards": null
},
{
"name": "Winterspell",
"set_id": "WIN",
"set_num": 11,
"released": "2026-02-13",
"total_cards": null
}
],
"count": 12
},
"meta": {
"timestamp": "2026-06-08T01:19:38.888Z",
"request_id": "ee83eb6a-97b0-4cb9-8353-91931a901713"
},
"status": "ok",
"message": "Sets retrieved successfully",
"success": true
}