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": "9C",
"image": "https://deckofcardsapi.com/static/img/9C.png",
"suit": "CLUBS",
"value": "9"
},
{
"code": "4D",
"image": "https://deckofcardsapi.com/static/img/4D.png",
"suit": "DIAMONDS",
"value": "4"
},
{
"code": "JD",
"image": "https://deckofcardsapi.com/static/img/JD.png",
"suit": "DIAMONDS",
"value": "JACK"
},
{
"code": "JS",
"image": "https://deckofcardsapi.com/static/img/JS.png",
"suit": "SPADES",
"value": "JACK"
},
{
"code": "6D",
"image": "https://deckofcardsapi.com/static/img/6D.png",
"suit": "DIAMONDS",
"value": "6"
}
],
"deck_id": "e3bk2dpyu33x",
"remaining": 47
},
"success": true
}