Skip to main content
GET
/
v1
/
models
/
catalogue
Get Model Catalogue
curl --request GET \
  --url https://api-tokyo.oneinbox.ai/v1/models/catalogue \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api-tokyo.oneinbox.ai/v1/models/catalogue"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api-tokyo.oneinbox.ai/v1/models/catalogue', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api-tokyo.oneinbox.ai/v1/models/catalogue"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
{
  "provider": "<string>",
  "models": [
    "<string>"
  ],
  "source": "<string>",
  "live_check": true
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Authorizations

Authorization
string
header
required

Your API key sent as a Bearer credential — Authorization: Bearer <api_key>, where <api_key> starts with oi_sk_ (create one via POST /v1/api-keys). Although the field is labelled 'token', paste your API key here. A dashboard JWT is also accepted on this header for the same endpoints.

Query Parameters

provider
string
default:openai

Provider whose accepted model ids to list (e.g. openai, deepgram, cartesia, elevenlabs).

kind
enum<string>
default:llm

Model kind to list: llm | stt | tts (drives the dropdown).

Available options:
llm,
stt,
tts

Response

Successful Response

Discovery payload for GET /v1/models/catalogue (#15): the accepted model ids for a provider so a client can pick a valid model without first POSTing a wrong one.

provider
string
required
models
string[]
required
source
string
required
live_check
boolean
required