API Reference

Attendee History

Fetch the complete attendance history for a specific attendee.

GET/api/v1/attendees/[id]/history

Pulls every single attendance record for a specific person. Returns the session IDs, session names, exact check-in timestamps, and the AI confidence score of the match.

Authorization

Bearer Token Required

Include your API key in the Authorization header as Bearer attg_live_…

Headers

ParameterTypeRequiredDescription
AuthorizationstringrequiredBearer token. Format: `Bearer attg_live_…`

Rate Limits

120 requests per 60s window per IP address.

Responses

Responses

Attendance history returned successfully.

{
  "ok": true,
  "data": [
    {
      "id": "uuid",
      "session_id": "uuid",
      "session_name": "Math 101",
      "attendance_time": "2026-05-21T14:30:00Z",
      "confidence": 1
    }
  ]
}