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 available models
      • GETGet grouped models
      • GETList search-capable models
      • GETList configured search providers
      • GETList model configurations
      • POSTCreate model configuration
      • PUTUpdate model configuration
      • DELDelete model configuration
      • PATCHEnable or disable model configuration
      • PATCHSet default model configuration
      • GETGet model configuration usage
      • GETList distinct models in use
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: Bearer <token>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "id": null,
5 "provider": "OpenAI",
6 "modelId": "gpt-4o-mini",
7 "displayName": "GPT-4o Mini",
8 "supportsCustomKey": true,
9 "keyStatus": "platform",
10 "costPer1kTokens": 0.03,
11 "supportsSearch": false,
12 "isConfigured": true,
13 "isEnabled": true,
14 "isDefault": false,
15 "contextLength": 8192,
16 "maxOutputTokens": 2048,
17 "supportsStreaming": true,
18 "supportedResponseFormats": [
19 "json",
20 "text"
21 ],
22 "uiCategory": "chat",
23 "uiPriority": 10,
24 "tags": [
25 "fast",
26 "cost-effective"
27 ]
28 }
29 ],
30 "total": 1,
31 "stats": {
32 "totalAvailable": 1,
33 "uiVisible": 1,
34 "popular": 1,
35 "configured": 1
36 }
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
totalinteger
statsobject

Errors

401
Unauthorized Error
500
Internal Server Error