Skip to main content
GET
/
api
/
v1
/
catalog-products
/
{id}
Get catalog product
curl --request GET \
  --url http://localhost:3001/api/v1/catalog-products/{id} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "externalId": "<string>",
    "title": "<string>",
    "handle": "<string>",
    "description": "<string>",
    "price": "<string>",
    "compareAtPrice": "<string>",
    "currency": "<string>",
    "primaryImageId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "primaryImageUrl": "<string>",
    "imageIds": [
      "<string>"
    ],
    "productUrl": "<string>",
    "category": "<string>",
    "tags": [
      "<string>"
    ],
    "sku": "<string>",
    "vendor": "<string>",
    "featured": true,
    "lastSyncedAt": "2023-11-07T05:31:56Z",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

x-api-key
string
header
required

Unified API key for server-side SDK and API integrations

Path Parameters

id
string<uuid>
required
Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Response

Default Response

success
boolean
required
data
object
required