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 configured search providers

GET
/v1/model-configs/search-configured
GET
/v1/model-configs/search-configured
$curl https://api.runtype.com/v1/model-configs/search-configured \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "id": "cfg_9f8b7a6c5d4e3f21",
5 "name": "OpenAI GPT-4 Search",
6 "provider": "openai",
7 "supportsCustomKey": true,
8 "keyStatus": "custom",
9 "displayLabel": "OpenAI GPT-4"
10 }
11 ],
12 "total": 1
13}
Get enabled user model configurations that support search, plus configured Exa search when available.
Was this page helpful?
Previous

List model configurations

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Response

Configured search providers
datalist of objects
totalinteger

Errors

401
Unauthorized Error
500
Internal Server Error