Skip to main content
GET
/
cards
/
{id}
Get a specific card
curl --request GET \
  --url https://www.postable.com/api/v1/cards/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "name": "<string>",
    "slug": "<string>",
    "description": "<string>",
    "price": "<string>",
    "is_vertical": true,
    "artist": {
      "id": 123,
      "name": "<string>",
      "slug": "<string>"
    },
    "categories": [
      {
        "id": 123,
        "name": "<string>",
        "slug": "<string>"
      }
    ],
    "occasions": [
      {
        "id": 123,
        "name": "<string>",
        "slug": "<string>"
      }
    ],
    "tags": [
      "<string>"
    ],
    "images": [
      {
        "type": "<string>",
        "url": "<string>"
      }
    ],
    "customization_type": {
      "id": 123,
      "name": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

ID of the card to retrieve

Response

The requested card

data
object
I