/v1/card
A single card by exact name
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/lorcana-api/v1/card" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lorcana-api/v1/card", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lorcana-api/v1/card");
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/card",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"card": {
"cost": 8,
"lore": 4,
"name": "Mickey Mouse - Brave Little Tailor",
"type": "Character",
"color": "Ruby",
"image": "https://lorcana-api.com/images/mickey_mouse/brave_little_tailor/mickey_mouse-brave_little_tailor-large.png",
"artist": "Nicolas Kole",
"rarity": "Legendary",
"inkable": true,
"set_num": 1,
"card_num": 115,
"set_name": "The First Chapter",
"strength": 5,
"abilities": "Evasive",
"body_text": "Evasive (Only characters with Evasive can challenge this character.)",
"franchise": "",
"unique_id": "TFC-115",
"willpower": 5,
"flavor_text": "When defeat looms and victory hangs by a thread, a hero bolts to the rescue, patching things up through shear determination.",
"classifications": [
"Dreamborn",
"Hero"
]
}
},
"meta": {
"timestamp": "2026-06-08T01:19:34.753Z",
"request_id": "5a86cb38-f5ea-49ed-b6dc-33f2b4bdb4fb"
},
"status": "ok",
"message": "Card retrieved successfully",
"success": true
}