GET
/hyax-api/v1/checkout-sessionsList checkout sessions
Base URL: https://platform.hyax.com · Replace YOUR_API_KEY with your team API key.
Query parameters
| Name | Required | Description |
|---|---|---|
status | No | `OPEN` | `COMPLETED` | `EXPIRED` | `CANCELED` |
email | No | Filter by buyer email |
externalUserId | No | Filter by your user id |
limit | No | 1–100 (default 20), newest first |
Request
curl -X GET 'https://platform.hyax.com/hyax-api/v1/[email protected]&limit=5&externalUserId=user_8f3a' \
-H 'Authorization: Bearer YOUR_API_KEY'Response
{
"success": true,
"data": [ { "id": "cs_clx…", "status": "OPEN", "…": "…" } ]
}