GET /cards/quickdraw
Create a new deck and immediately draw cards in one request. Perfect for quick card game prototyping.
count
optional
default: 5
Number of cards to draw
| Name | Required | Default | Description |
|---|---|---|---|
count |
No | 5 | Number of cards to draw |
curl "https://nordapi.ee/api/v1/cards/quickdraw?count=5"
{
"data": {
"cards": [
{
"code": "QS",
"image": "https://deckofcardsapi.com/static/img/QS.png",
"suit": "SPADES",
"value": "QUEEN"
},
{
"code": "0D",
"image": "https://deckofcardsapi.com/static/img/0D.png",
"suit": "DIAMONDS",
"value": "10"
},
{
"code": "4C",
"image": "https://deckofcardsapi.com/static/img/4C.png",
"suit": "CLUBS",
"value": "4"
},
{
"code": "8S",
"image": "https://deckofcardsapi.com/static/img/8S.png",
"suit": "SPADES",
"value": "8"
},
{
"code": "QC",
"image": "https://deckofcardsapi.com/static/img/QC.png",
"suit": "CLUBS",
"value": "QUEEN"
}
],
"deck_id": "tvym0t7xyilt",
"remaining": 47
},
"success": true
}