Skip to main content
GET
/
products
/
{id}
Retrieve a product
curl --request GET \
  --url https://{domain}/api/site/products/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 111,
  "title": "Interior Door",
  "description": "<string>",
  "url": "interior-door",
  "hidden": true,
  "images": [
    "https://path-to-image.jpg",
    "https://path-to-another-image.jpg"
  ],
  "categories": [
    {
      "id": 1,
      "name": "Doors",
      "url": "doors",
      "parentCategory": 0
    }
  ],
  "options": [
    {
      "name": "Material",
      "values": [
        "Wood",
        "Glass"
      ],
      "advanced": true
    }
  ],
  "variants": [
    {
      "options": [
        "Wood",
        "Single"
      ],
      "price": 199,
      "onSale": true,
      "regularPrice": 123,
      "salePrice": 123,
      "quantity": 123,
      "sku": "D-001",
      "weight": 123
    }
  ],
  "subscription": {
    "cycles": 123,
    "period": 123
  },
  "file": "<string>"
}

Authorizations

Authorization
string
header
required

Pass your API key as: Authorization: Bearer <API KEY>.

Path Parameters

id
integer
required

The id of the product.

Example:

111

Response

A single product.

id
integer

Unique identifier.

Example:

111

type
enum<string>

The type of the product.

Available options:
physical,
digital,
service,
membership
title
string
Example:

"Interior Door"

description
string

Supports light HTML formatting.

url
string

The product URL (handle) in your store.

Example:

"interior-door"

hidden
boolean

Whether the product is hidden in your store front.

images
string<uri>[]
Example:
[
"https://path-to-image.jpg",
"https://path-to-another-image.jpg"
]
categories
object[]
options
object[]
variants
object[]
subscription
object

Subscription details for a subscription product.

file
string<uri>

Digital products only - URL of the digital file being sold.

Last modified on June 20, 2026