Skip to main content
DocsAPI ReferenceAgents
ApiModels

List the AI models available per engine

View Markdown

Returns the models you can choose per engine on the visibility, prompt, and scan endpoints, plus each engine's default. Pass a chosen model through the models field on those endpoints. Free, no credits.

GET/v1/models/

Authorization

accessKey
x-access-key<token>

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/models/"
{
  "success": true,
  "data": {
    "engines": [
      {
        "engine": "string",
        "default": "string",
        "models": [
          "string"
        ]
      }
    ]
  }
}
{
  "success": false,
  "message": "string"
}
{
  "success": false,
  "message": "string"
}