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": "2C",
"image": "https://deckofcardsapi.com/static/img/2C.png",
"suit": "CLUBS",
"value": "2"
},
{
"code": "AC",
"image": "https://deckofcardsapi.com/static/img/AC.png",
"suit": "CLUBS",
"value": "ACE"
},
{
"code": "JD",
"image": "https://deckofcardsapi.com/static/img/JD.png",
"suit": "DIAMONDS",
"value": "JACK"
},
{
"code": "JC",
"image": "https://deckofcardsapi.com/static/img/JC.png",
"suit": "CLUBS",
"value": "JACK"
},
{
"code": "2S",
"image": "https://deckofcardsapi.com/static/img/2S.png",
"suit": "SPADES",
"value": "2"
}
],
"deck_id": "v7742cp9t5y8",
"remaining": 47
},
"success": true
}