GET /cards/quickdraw
Opprett en ny kortstokk og trekk kort umiddelbart i én forespørsel. Perfekt for rask kortspillprototyping.
count
valgfri
standard: 5
Number of cards to draw
| Navn | Påkrevd | Standard | Beskrivelse |
|---|---|---|---|
count |
Nei | 5 | Number of cards to draw |
curl "https://nordapi.ee/api/v1/cards/quickdraw?count=5"
{
"data": {
"cards": [
{
"code": "9D",
"image": "https://deckofcardsapi.com/static/img/9D.png",
"suit": "DIAMONDS",
"value": "9"
},
{
"code": "AH",
"image": "https://deckofcardsapi.com/static/img/AH.png",
"suit": "HEARTS",
"value": "ACE"
},
{
"code": "AC",
"image": "https://deckofcardsapi.com/static/img/AC.png",
"suit": "CLUBS",
"value": "ACE"
},
{
"code": "KD",
"image": "https://deckofcardsapi.com/static/img/KD.png",
"suit": "DIAMONDS",
"value": "KING"
},
{
"code": "3C",
"image": "https://deckofcardsapi.com/static/img/3C.png",
"suit": "CLUBS",
"value": "3"
}
],
"deck_id": "r71la3seqq5r",
"remaining": 47
},
"success": true
}