← Gaming

Quick Draw

GET /cards/quickdraw

Create a new deck and immediately draw cards in one request. Perfect for quick card game prototyping.

Parameters

count optional default: 5

Number of cards to draw

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/cards/quickdraw?count=5"

Live Response

{
  "data": {
    "cards": [
      {
        "code": "KS",
        "image": "https://deckofcardsapi.com/static/img/KS.png",
        "suit": "SPADES",
        "value": "KING"
      },
      {
        "code": "QD",
        "image": "https://deckofcardsapi.com/static/img/QD.png",
        "suit": "DIAMONDS",
        "value": "QUEEN"
      },
      {
        "code": "7C",
        "image": "https://deckofcardsapi.com/static/img/7C.png",
        "suit": "CLUBS",
        "value": "7"
      },
      {
        "code": "9S",
        "image": "https://deckofcardsapi.com/static/img/9S.png",
        "suit": "SPADES",
        "value": "9"
      },
      {
        "code": "QH",
        "image": "https://deckofcardsapi.com/static/img/QH.png",
        "suit": "HEARTS",
        "value": "QUEEN"
      }
    ],
    "deck_id": "sfvj0cg2z35k",
    "remaining": 47
  },
  "success": true
}