API Reference
List Attendees
Fetch a paginated list of attendees in your organization.
GET
/api/v1/attendeesReturns up to 500 attendees for the organization linked to your API key. You can use `limit` and `offset` for pagination. The `is_enrolled` flag indicates if the attendee has registered their face for AI check-in.
Authorization
Bearer Token Required
Include your API key in the
Authorization header as Bearer attg_live_…Headers
| Parameter | Type | Required | Description |
|---|---|---|---|
Authorization | string | required | Bearer token. Format: `Bearer attg_live_…` |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | number | optional | Max results (default 100, max 500) |
offset | number | optional | Pagination offset (default 0) |
Rate Limits
120 requests per 60s window per IP address.
Responses
Responses
Attendees returned successfully.
{
"ok": true,
"data": [
{
"id": "uuid",
"first_name": "Ahmed",
"last_name": "Ali",
"phone": "123",
"is_enrolled": true
}
],
"meta": {
"count": 1
}
}