← Documentation home
GET/hyax-api/v1/products/:id

Get product

Includes SKUs, meeting fields, membership duration, productSpecs when present.

Base URL: https://platform.hyax.com · Replace YOUR_API_KEY with your team API key.

Request examples

Same request in cURL, Node.js (fetch), and PHP (ext-curl).

curl -X GET 'https://platform.hyax.com/hyax-api/v1/products/clx_example_id' \
  -H 'Authorization: Bearer YOUR_API_KEY'

Example response

Shape varies by data; values are illustrative.

{
  "success": true,
  "data": {
    "id": "clx…",
    "title": "Coaching call",
    "slug": "coaching-call",
    "description": null,
    "type": "MEETING",
    "pricingType": "ONE_TIME",
    "price": 150,
    "currency": "USD",
    "isActive": true,
    "membershipDuration": null,
    "recurringBilling": false,
    "trialDays": null,
    "meetingDuration": 60,
    "meetingType": "ONE_ON_ONE",
    "maxAttendees": null,
    "meetingLocation": null,
    "meetingLocationType": null,
    "productSpecs": null,
    "skus": [],
    "createdAt": "2025-01-15T12:00:00.000Z",
    "updatedAt": "2025-01-15T12:00:00.000Z"
  }
}