API Reference
A I Models
List the AI models available to your organization.
List AI models
Returns every AI model on the platform — not filtered per organization and not paginated. Models flagged is_premium: true require a premium plan to assign to an agent.
Scope: agent:read · Rate limit: Read (120/min)
GET
/ai-modelsAuthorizationBearer <token>
Bearer API key. Create one in your dashboard (Settings → API Keys); the full value is shown only once. Requires the organization owner on a premium or active AppSumo plan.
In: header
Response Body
curl -X GET "https://api.assistloop.ai/api/public/v1/ai-models"{
"data": [
{
"id": "9b1c7e2a-3d4f-4a5b-8c6d-7e8f9a0b1c2d",
"name": "GPT-4o",
"slug": "gpt-4o",
"is_premium": true
},
{
"id": "1a2b3c4d-5e6f-4708-9a1b-2c3d4e5f6071",
"name": "GPT-4o mini",
"slug": "gpt-4o-mini",
"is_premium": false
}
],
"meta": {
"request_id": "b7f0b9c2-1a2b-4c3d-8e9f-0a1b2c3d4e5f"
}
}{
"message": "Unauthenticated."
}{
"error": {
"code": "insufficient_scope",
"message": "Token is missing required scope: source:create",
"details": []
},
"meta": {
"request_id": "b7f0b9c2-1a2b-4c3d-8e9f-0a1b2c3d4e5f"
}
}