← Spel

Snabbdragning

GET /cards/quickdraw

Skapa en ny kortlek och dra kort direkt i samma begäran. Perfekt för snabb prototypframtagning av kortspel.

Parametrar

count valfri standard: 5

Number of cards to draw

Exempelförfrågningar

Grundläggande användning
curl "https://nordapi.ee/api/v1/cards/quickdraw?count=5"

Livesvar

{
  "data": {
    "cards": [
      {
        "code": "8S",
        "image": "https://deckofcardsapi.com/static/img/8S.png",
        "suit": "SPADES",
        "value": "8"
      },
      {
        "code": "AD",
        "image": "https://deckofcardsapi.com/static/img/aceDiamonds.png",
        "suit": "DIAMONDS",
        "value": "ACE"
      },
      {
        "code": "2C",
        "image": "https://deckofcardsapi.com/static/img/2C.png",
        "suit": "CLUBS",
        "value": "2"
      },
      {
        "code": "4D",
        "image": "https://deckofcardsapi.com/static/img/4D.png",
        "suit": "DIAMONDS",
        "value": "4"
      },
      {
        "code": "7C",
        "image": "https://deckofcardsapi.com/static/img/7C.png",
        "suit": "CLUBS",
        "value": "7"
      }
    ],
    "deck_id": "gxpt56ayke3o",
    "remaining": 47
  },
  "success": true
}