GET /cards/quickdraw
Opret et nyt kortspil og træk kort med det samme i én forespørgsel. Perfekt til hurtig kortspilsprototyping.
count
valgfri
standard: 5
Number of cards to draw
| Navn | Påkrævet | Standard | Beskrivelse |
|---|---|---|---|
count |
Nej | 5 | Number of cards to draw |
curl "https://nordapi.ee/api/v1/cards/quickdraw?count=5"
{
"data": {
"cards": [
{
"code": "3H",
"image": "https://deckofcardsapi.com/static/img/3H.png",
"suit": "HEARTS",
"value": "3"
},
{
"code": "8H",
"image": "https://deckofcardsapi.com/static/img/8H.png",
"suit": "HEARTS",
"value": "8"
},
{
"code": "2D",
"image": "https://deckofcardsapi.com/static/img/2D.png",
"suit": "DIAMONDS",
"value": "2"
},
{
"code": "5D",
"image": "https://deckofcardsapi.com/static/img/5D.png",
"suit": "DIAMONDS",
"value": "5"
},
{
"code": "8S",
"image": "https://deckofcardsapi.com/static/img/8S.png",
"suit": "SPADES",
"value": "8"
}
],
"deck_id": "howq8sikekgh",
"remaining": 47
},
"success": true
}