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": "9D",
"image": "https://deckofcardsapi.com/static/img/9D.png",
"suit": "DIAMONDS",
"value": "9"
},
{
"code": "JS",
"image": "https://deckofcardsapi.com/static/img/JS.png",
"suit": "SPADES",
"value": "JACK"
},
{
"code": "8D",
"image": "https://deckofcardsapi.com/static/img/8D.png",
"suit": "DIAMONDS",
"value": "8"
},
{
"code": "2H",
"image": "https://deckofcardsapi.com/static/img/2H.png",
"suit": "HEARTS",
"value": "2"
},
{
"code": "3S",
"image": "https://deckofcardsapi.com/static/img/3S.png",
"suit": "SPADES",
"value": "3"
}
],
"deck_id": "59gjl2bptu9s",
"remaining": 47
},
"success": true
}