Promptic

List models available to the current AI Application

Returns model selection IDs after applying the AI Application's configured providers and disabled-model settings. `judgeEligible` identifies models selectable in the benchmark evaluator Judge model picker. An API key carries its AI Application scope; session requests require X-AI-Application-Id or aiApplicationId.

GET
/models

Returns model selection IDs after applying the AI Application's configured providers and disabled-model settings. judgeEligible identifies models selectable in the benchmark evaluator Judge model picker. An API key carries its AI Application scope; session requests require X-AI-Application-Id or aiApplicationId.

Authorization

AuthorizationBearer <token>

API key from AI Application settings

In: header

Query Parameters

aiApplicationId?string

AI Application scope for session-authenticated browser requests. Omit when using Bearer API keys because the key carries AI Application scope.

Formatuuid

Header Parameters

X-AI-Application-Id?string

Alternative AI Application scope for session-authenticated requests. Ignored when using Bearer API keys.

Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://loading/api/v1/models"
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "provider": "string",
      "group": "openai",
      "region": "eu",
      "judgeEligible": true
    }
  ]
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}