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/json
object string REQUIRED
Enum: list
data object[] REQUIRED
Array of:
id string REQUIRED
object string REQUIRED
Enum: model
created 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"    }  ]}
Ask a question... ⌘I