New Orchly MCP & API are live. Build custom workflows with your SEO & AI visibility data.
GET /models

List models

The AI engines Orchly tracks (ChatGPT, Perplexity, Gemini, and more). Use the IDs as `platform` filters.

Authenticate with Authorization: Bearer obk_live_xxx. See authentication.

Responses

200 OK
FieldTypeDescription
models object[]

Example request

curl --request GET \
  --url https://app.orchly.ai/api/v1/models \
  --header 'Authorization: Bearer obk_live_xxx'
const res = await fetch(`https://app.orchly.ai/api/v1/models`, {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer obk_live_xxx',
  },
});
const data = await res.json();
import requests

resp = requests.get(
    "https://app.orchly.ai/api/v1/models",
    headers={
        "Authorization": "Bearer obk_live_xxx",
    },
)
data = resp.json()

Example response

A 200 response. Dynamic fields are shown as their type.

{
  "models": [
    {
      "id": "string",
      "name": "string"
    }
  ]
}