Skip to main content
GET
/
end-users
curl "https://api.bota.dev/v1/end-users?limit=10" \
  -H "Authorization: Bearer sk_live_..."
{
  "data": [
    {
      "id": "eu_abc123",
      "external_id": "user_12345",
      "email": "[email protected]",
      "name": "John Doe",
      "metadata": {
        "plan": "pro"
      },
      "created_at": "2025-01-15T10:30:00Z"
    },
    {
      "id": "eu_def456",
      "external_id": "user_67890",
      "email": "[email protected]",
      "name": "Jane Smith",
      "metadata": null,
      "created_at": "2025-01-14T09:00:00Z"
    }
  ],
  "has_more": true
}
limit
integer
default:"25"
Maximum number of items to return (1-100).
offset
integer
default:"0"
Number of items to skip for pagination.
curl "https://api.bota.dev/v1/end-users?limit=10" \
  -H "Authorization: Bearer sk_live_..."
{
  "data": [
    {
      "id": "eu_abc123",
      "external_id": "user_12345",
      "email": "[email protected]",
      "name": "John Doe",
      "metadata": {
        "plan": "pro"
      },
      "created_at": "2025-01-15T10:30:00Z"
    },
    {
      "id": "eu_def456",
      "external_id": "user_67890",
      "email": "[email protected]",
      "name": "Jane Smith",
      "metadata": null,
      "created_at": "2025-01-14T09:00:00Z"
    }
  ],
  "has_more": true
}