GET /cards/quickdraw
Создание новой колоды и немедленная раздача карт в одном запросе. Идеально для быстрого прототипирования карточных игр.
count
необязательный
по умолчанию: 5
Number of cards to draw
| Название | Обязательный | По умолчанию | Описание |
|---|---|---|---|
count |
Нет | 5 | Number of cards to draw |
curl "https://nordapi.ee/api/v1/cards/quickdraw?count=5"
{
"data": {
"cards": [
{
"code": "JC",
"image": "https://deckofcardsapi.com/static/img/JC.png",
"suit": "CLUBS",
"value": "JACK"
},
{
"code": "QC",
"image": "https://deckofcardsapi.com/static/img/QC.png",
"suit": "CLUBS",
"value": "QUEEN"
},
{
"code": "JH",
"image": "https://deckofcardsapi.com/static/img/JH.png",
"suit": "HEARTS",
"value": "JACK"
},
{
"code": "7S",
"image": "https://deckofcardsapi.com/static/img/7S.png",
"suit": "SPADES",
"value": "7"
},
{
"code": "3D",
"image": "https://deckofcardsapi.com/static/img/3D.png",
"suit": "DIAMONDS",
"value": "3"
}
],
"deck_id": "dokpfld3x93j",
"remaining": 47
},
"success": true
}