← Documentation home
GET
/hyax-api/v1/meetings/slotsList meeting slots
Base URL: https://platform.hyax.com · Replace YOUR_API_KEY with your team API key.
Query parameters
| Name | Required | Description |
|---|---|---|
| productId | Yes | Meeting-type product ID |
| from | No | ISO date; default now |
| limit | No | Default 50, max 100 |
Request examples
Same request in cURL, Node.js (fetch), and PHP (ext-curl).
curl -X GET 'https://platform.hyax.com/hyax-api/v1/meetings/slots?productId=clx_product_id&limit=10' \
-H 'Authorization: Bearer YOUR_API_KEY'Example response
Shape varies by data; values are illustrative.
{
"success": true,
"data": {
"productId": "clx…",
"productTitle": "Strategy call",
"slots": [
{
"id": "clx…",
"startTime": "2025-01-20T14:00:00.000Z",
"endTime": "2025-01-20T15:00:00.000Z",
"maxAttendees": 1,
"currentAttendees": 0,
"isAvailable": true
}
]
}
}