GET
/
v1
/
products
/
{id}
Product details
curl --request GET \
  --url https://api.kajabi.com/v1/products/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "created_at": "2023-11-07T05:31:56Z",
      "title": "<string>",
      "description": "<string>",
      "status": "<string>",
      "members_aggregate_count": 123,
      "product_type_name": "<string>",
      "product_type_id": 123,
      "publish_status": "<string>",
      "thumbnail_url": "<string>",
      "url": "<string>"
    },
    "relationships": {
      "site": {
        "data": {
          "id": "<string>",
          "type": "<string>"
        }
      }
    }
  },
  "links": {
    "self": "<string>",
    "current": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Query Parameters

fields[products]
string

Partial attributes as specified, e.g. fields[products]=title,publish_status

Response

Success, shows details of a product

data
object