For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
User GuideDeveloper GuidesAPI Reference
User GuideDeveloper GuidesAPI Reference
    • Overview
  • Runtype API
      • GETList model configurations
      • POSTCreate model configuration
      • GETList available models
      • GETGet grouped models
      • GETList search-capable models
      • GETList configured search providers
      • GETGet model configuration usage
      • PUTUpdate model configuration
      • DELDelete model configuration
      • PATCHSet default model configuration
      • PATCHEnable or disable model configuration
Dashboard
LogoLogo
Runtype APIModel Configs

List available models

Deprecated
GET
/v1/model-configs/available
GET
/v1/model-configs/available
$curl https://api.runtype.com/v1/model-configs/available \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "costPer1kTokens": 0.002,
5 "displayName": "GPT-4 Turbo",
6 "id": null,
7 "isConfigured": true,
8 "isDefault": false,
9 "isEnabled": true,
10 "keyStatus": "platform",
11 "modelId": "gpt-4-turbo-0613",
12 "provider": "OpenAI",
13 "supportsCustomKey": false,
14 "supportsSearch": true,
15 "contextLength": 8192,
16 "maxOutputTokens": 2048,
17 "supportedResponseFormats": [
18 "json",
19 "text"
20 ],
21 "supportsStreaming": true,
22 "tags": [
23 "chat",
24 "completion"
25 ],
26 "uiCategory": "chat",
27 "uiPriority": 10
28 }
29 ],
30 "stats": {
31 "configured": 5,
32 "popular": 3,
33 "totalAvailable": 12,
34 "uiVisible": 10
35 },
36 "total": 12
37}

Deprecated flat model catalog endpoint. Use /grouped for grouped provider options.

Was this page helpful?
Previous

Get grouped models

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Query parameters

showAllstringOptional
categorystringOptional

Response

Available model catalog with user configuration status
datalist of objects
statsobject
totalinteger

Errors

401
Unauthorized Error
500
Internal Server Error