Models
Browse and retrieve information about the AI models available through Nextbit's API. Our models are compatible with the OpenAI format.
The model object
The model object contains information about a specific AI model, including its ID, capabilities, and context window.
Properties
- Name
id- Type
- string
- Description
Unique identifier for the model.
- Name
object- Type
- string
- Description
Object type, always
"model".
- Name
created- Type
- integer
- Description
Unix timestamp of when the model was created.
- Name
owned_by- Type
- string
- Description
Organization that owns the model.
List models
Retrieve a list of all available models that can be used with the API.
Request
from openai import OpenAI
client = OpenAI(
base_url="https://api.nextbit256.com/v1",
api_key="your-api-key"
)
models = client.models.list()
for model in models.data:
print(model.id)
Response
{
"object": "list",
"data": [
{
"id": "llama3.3:70b",
"object": "model",
"created": 1686935002,
"owned_by": "meta"
},
{
"id": "qwen2.5:72b",
"object": "model",
"created": 1686935002,
"owned_by": "alibaba"
}
]
}
Retrieve model
Retrieve information about a specific model by its ID.
Required attributes
- Name
id- Type
- string
- Description
The ID of the model to retrieve.
Request
from openai import OpenAI
client = OpenAI(
base_url="https://api.nextbit256.com/v1",
api_key="your-api-key"
)
model = client.models.retrieve("llama3.3:70b")
print(model)
Response
{
"id": "llama3.3:70b",
"object": "model",
"created": 1686935002,
"owned_by": "meta"
}
Available Models
All models support both chat completions and streaming. Below is the complete list of available models with real-time pricing and specifications.
alia-salamandra:40b
Unknown
Pricing (per 1M tokens)
deepseek:v4-flash
DeepSeek
Pricing (per 1M tokens)
deepseek:v4-flash-0731
DeepSeek
Pricing (per 1M tokens)
deepseek:v4-pro
DeepSeek
Pricing (per 1M tokens)
deepseek:v4-pro-0813
DeepSeek
Pricing (per 1M tokens)
euryale:33-70b
Unknown
Pricing (per 1M tokens)
gemma-2:27b-it
Pricing (per 1M tokens)
gemma4:26b-a4b
Pricing (per 1M tokens)
glm:5.3-flash
Unknown
Pricing (per 1M tokens)
kimi:k2.6
Unknown
Pricing (per 1M tokens)
kimi:k3
Unknown
Pricing (per 1M tokens)
mythomax:13b
Unknown
Pricing (per 1M tokens)
qwen3:14b
Qwen
Pricing (per 1M tokens)
remm-slerp:l2-13b
Unknown
Pricing (per 1M tokens)
unslopnemo:12b
Unknown
Pricing (per 1M tokens)
Pricing Note: All prices are displayed per 1 million tokens. Actual costs are calculated per token used. For example, processing 10,000 tokens at $0.17 per 1M costs $0.0017.