Skip to main content
curl https://api.usenaive.ai/v1/employees \
  -H "Authorization: Bearer nv_sk_live_..."
{
  "employees": [
    {
      "id": "emp-abc-123",
      "name": "Jordan Kim",
      "role": "engineer",
      "title": "Lead Engineer",
      "department": "engineering",
      "status": "idle",
      "enabled": true,
      "created_at": "2026-01-10T09:00:00Z"
    },
    {
      "id": "emp-def-456",
      "name": "Alex Rivera",
      "role": "writer",
      "title": "Content Marketer",
      "department": "marketing",
      "status": "working",
      "enabled": true,
      "created_at": "2026-01-10T09:05:00Z"
    }
  ],
  "count": 2
}

Response Fields

FieldTypeDescription
employeesarrayList of employee objects
countintegerTotal employees
Employee statuses: idle, working, offline, error.