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": "8H",
"image": "https://deckofcardsapi.com/static/img/8H.png",
"suit": "HEARTS",
"value": "8"
},
{
"code": "AH",
"image": "https://deckofcardsapi.com/static/img/AH.png",
"suit": "HEARTS",
"value": "ACE"
},
{
"code": "7S",
"image": "https://deckofcardsapi.com/static/img/7S.png",
"suit": "SPADES",
"value": "7"
},
{
"code": "7C",
"image": "https://deckofcardsapi.com/static/img/7C.png",
"suit": "CLUBS",
"value": "7"
},
{
"code": "0D",
"image": "https://deckofcardsapi.com/static/img/0D.png",
"suit": "DIAMONDS",
"value": "10"
}
],
"deck_id": "7mzuz7e4081b",
"remaining": 47
},
"success": true
}