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>"
}
}
}Retrieve a specific card by ID
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>"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the card to retrieve
The requested card
Show child attributes