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": "7C",
"image": "https://deckofcardsapi.com/static/img/7C.png",
"suit": "CLUBS",
"value": "7"
},
{
"code": "9D",
"image": "https://deckofcardsapi.com/static/img/9D.png",
"suit": "DIAMONDS",
"value": "9"
},
{
"code": "3C",
"image": "https://deckofcardsapi.com/static/img/3C.png",
"suit": "CLUBS",
"value": "3"
},
{
"code": "4H",
"image": "https://deckofcardsapi.com/static/img/4H.png",
"suit": "HEARTS",
"value": "4"
},
{
"code": "7H",
"image": "https://deckofcardsapi.com/static/img/7H.png",
"suit": "HEARTS",
"value": "7"
}
],
"deck_id": "7q5ayo6s0xjj",
"remaining": 47
},
"success": true
}