Skip to main content
GET
/
api
/
v1
/
config
/
models
/
search
Search Available Models
curl --request GET \
  --url https://app.all-hands.dev/api/v1/config/models/search \
  --header 'X-Access-Token: <api-key>'
{
  "items": [
    {
      "name": "<string>",
      "provider": "<string>",
      "verified": false
    }
  ],
  "next_page_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://allhandsai-add-v1-api-reference.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Access-Token
string
header
required

Query Parameters

page_id
string | null
limit
integer
default:50
Required range: x <= 100
query
string | null
verified__eq
boolean | null

Response

Successful Response

Paginated response for LLM models.

Attributes: items: List of LLM models in the current page. next_page_id: ID for the next page, or None if there are no more pages.

items
LLMModel · object[]
required
next_page_id
string | null