GET /cards/quickdraw
Cree a new deck and immediately draw cards en una solicitud. Perfecto para quick card game prototyping.
count
opcional
predeterminado: 5
Number of cards to draw
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
count |
No | 5 | Number of cards to draw |
curl "https://nordapi.ee/api/v1/cards/quickdraw?count=5"
{
"data": {
"cards": [
{
"code": "8H",
"image": "https://deckofcardsapi.com/static/img/8H.png",
"suit": "HEARTS",
"value": "8"
},
{
"code": "4S",
"image": "https://deckofcardsapi.com/static/img/4S.png",
"suit": "SPADES",
"value": "4"
},
{
"code": "0S",
"image": "https://deckofcardsapi.com/static/img/0S.png",
"suit": "SPADES",
"value": "10"
},
{
"code": "QH",
"image": "https://deckofcardsapi.com/static/img/QH.png",
"suit": "HEARTS",
"value": "QUEEN"
},
{
"code": "QC",
"image": "https://deckofcardsapi.com/static/img/QC.png",
"suit": "CLUBS",
"value": "QUEEN"
}
],
"deck_id": "7rmy2jqk7mp4",
"remaining": 47
},
"success": true
}