Skip to content
InfercomInfercomInfercom Documentation

Models

Get environment's available model list metadata

GET
/models
from openai import OpenAI
client = OpenAI(
base_url="https://api.infercom.ai/v1",
api_key="your-infercom-api-key",
)
models = client.models.list()
for model in models.data:
print(model.id)

List the models available in your Infercom environment, including context length, capabilities, and EU data residency, via the OpenAI-compatible endpoint.

verbose
boolean

When set to true, returns detailed model metadata including sovereignty information in the sn_metadata field (e.g., region, architecture, category, license).

Successful Response

Media typeapplication/json
Model Metadata List

Object containing available models and metadata

object
data
required
Data

Array of model metadata list

Array<object>
Model Metadata

Model metadata

object
id
required
Id

Model id

string
object
Object

Type

string
default: model
Allowed value: model
Allowed values: model
owned_by
OwnedBy

Model owner

string
context_length
context length

Model context length

integer
max_completion_tokens
max completion tokens

Model max completion tokens

integer
sn_metadata
sn metadata

Additional metadata provided by SambaNova. Use the ?verbose=true query parameter on /v1/models to ensure this field is populated.

object
region
region

Hosting region for the model. "EU" indicates the model runs on Infercom’s EU infrastructure (Equinix Munich 4, Germany) with full data sovereignty.

string
is_external
is_external

false = EU-hosted on Infercom infrastructure (sovereign). true = routed to SambaNova’s global infrastructure (US).

boolean
architecture
architecture

Model architecture identifier

string
provider
provider

Model provider (e.g., Meta, DeepSeek, MiniMax, OpenAI)

string
capabilities
capabilities

Model capabilities (e.g., text, reasoning, vision)

Array<string>
license
license

Model license type

string
status
status

Model availability status (e.g., active)

string
hf_link
hf_link

Hugging Face model page URL

string
overview
overview

Brief model description

string
pricing
pricing

Pricing details

object
prompt
prompt

Price per prompt token in USD

number
completion
completion

Price per completion token in USD

number
duration_per_hour
duration per hour

Price per input hour

number
nullable
key
additional properties
any
key
additional properties
any
object
Object
string
default: list
Allowed value: list
Allowed values: list
key
additional properties
any
Example
{
"data": [
{
"object": "model",
"sn_metadata": {
"region": "EU",
"is_external": false
}
}
],
"object": "list"
}