List hosted OpenAI-compatible models.
Returns only router-eligible, observed, paid-route-capable public model profiles. Node IDs, runtime IDs, endpoint URLs, prompts, outputs, customer IDs, tokens, and tunnel details are not exposed.
GET
/v1/models
Returns only router-eligible, observed, paid-route-capable public model
profiles. Node IDs, runtime IDs, endpoint URLs, prompts, outputs,
customer IDs, tokens, and tunnel details are not exposed.
Authentication
Bearer Token (b3iq_gateway)
Responses
200
OpenAI-compatible model list.
application/jsonobject
string
REQUIRED
Enum:
listdata
object[]
REQUIRED
Array of:
id
string
REQUIRED
object
string
REQUIRED
Enum:
modelcreated
integer
REQUIRED
Unix timestamp from the freshest observed benchmark, or 0.
owned_by
string
REQUIRED
Enum:
b3iq
default
OpenAI-compatible error with B3IQ metadata.
curl -X GET 'https://{controlPlaneHost}/v1/models' \ -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://{controlPlaneHost}/v1/models', { method: 'GET', headers: { "Authorization": "Bearer YOUR_API_TOKEN" }});const data = await response.json();console.log(data);
200
Response
{ "object": "list", "data": [ { "id": "<string>", "object": "model", "created": 123, "owned_by": "b3iq" } ]}
API Playground
Try this endpoint
GET
/v1/models
