Μετάβαση στο περιεχόμενο
GET /v1/set

Cards in a set

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/lorcana-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/lorcana-api/v1/set" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lorcana-api/v1/set", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lorcana-api/v1/set");
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/set",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "set": "The First Chapter",
        "cards": [
            {
                "cost": 4,
                "lore": 2,
                "name": "Ariel - On Human Legs",
                "type": "Character",
                "color": "Amber",
                "image": "https://lorcana-api.com/images/ariel/on_human_legs/ariel-on_human_legs-large.png",
                "artist": "Matthew Robert Davies",
                "rarity": "Uncommon",
                "inkable": true,
                "set_num": 1,
                "card_num": 1,
                "set_name": "The First Chapter",
                "strength": 3,
                "body_text": "Voiceless - This character can't {e} to sing songs.",
                "franchise": "",
                "unique_id": "TFC-001",
                "willpower": 4,
                "flavor_text": "\"...\"",
                "classifications": [
                    "Storyborn",
                    "Hero",
                    "Princess"
                ]
            },
            {
                "cost": 3,
                "lore": 1,
                "name": "Ariel - Spectacular Singer",
                "type": "Character",
                "color": "Amber",
                "image": "https://lorcana-api.com/images/ariel/spectacular_singer/ariel-spectacular_singer-large.png",
                "artist": "Alice Pisoni",
                "rarity": "Super Rare",
                "inkable": true,
                "set_num": 1,
                "card_num": 2,
                "set_name": "The First Chapter",
                "strength": 2,
                "abilities": "Singer 5",
                "body_text": "Singer 5 (This character counts as cost 5 to sing songs.) \n\nMusical Debut - When you play this character, look at the top 4 cards of your deck. You may reveal a song card and put it into your hand. Put the rest on the bottom of your deck in any order.",
                "franchise": "",
                "unique_id": "TFC-002",
                "willpower": 3,
                "classifications": [
                    "Storyborn",
                    "Hero",
                    "Princess"
                ]
            },
            {
                "cost": 4,
                "lore": 2,
                "name": "Cinderella - Gentle and Kind",
                "type": "Character",
                "color": "Amber",
                "image": "https://lorcana-api.com/images/cinderella/gentle_and_kind/cinderella-gentle_and_kind-large.png",
                "artist": "Javier Salas",
                "rarity": "Uncommon",
                "inkable": true,
                "set_num": 1,
                "card_num": 3,
                "set_name": "The First Chapter",
                "strength": 2,
                "abilities": "Singer 5",
                "body_text": "Singer 5 (This character counts as cost 5 to sing songs.) \n\nA Wonderful Dream - {e} - Remove up to 3 damage from chosen Princess character.",
                "franchise"
…