GET /cards/quickdraw
Create a ny deck and immediately draw kort in one request. Perfekt för quick kortspel prototyping.
count
valfri
standard: 5
Number of cards to draw
| Namn | Obligatorisk | Standard | Beskrivning |
|---|---|---|---|
count |
Nej | 5 | Number of cards to draw |
curl "https://nordapi.ee/api/v1/cards/quickdraw?count=5"
{
"data": {
"cards": [
{
"code": "0D",
"image": "https://deckofcardsapi.com/static/img/0D.png",
"suit": "DIAMONDS",
"value": "10"
},
{
"code": "2S",
"image": "https://deckofcardsapi.com/static/img/2S.png",
"suit": "SPADES",
"value": "2"
},
{
"code": "7D",
"image": "https://deckofcardsapi.com/static/img/7D.png",
"suit": "DIAMONDS",
"value": "7"
},
{
"code": "6C",
"image": "https://deckofcardsapi.com/static/img/6C.png",
"suit": "CLUBS",
"value": "6"
},
{
"code": "2H",
"image": "https://deckofcardsapi.com/static/img/2H.png",
"suit": "HEARTS",
"value": "2"
}
],
"deck_id": "vtlv0ieetze9",
"remaining": 47
},
"success": true
}