Skip to content
API Reference

Models API

List and retrieve information about available models.

List Models

GEThttps://api.infe.io/v1/models

Returns a list of all available models. This endpoint does not require authentication.

curl https://api.infe.io/v1/models

Response

JSON
{
"object": "list",
"data": [
{
"id": "infe-pulse",
"object": "model",
"created": 1700000000,
"owned_by": "infe"
},
{
"id": "infe-titan",
"object": "model",
"created": 1700000000,
"owned_by": "infe"
}
]
}

Retrieve Model

GEThttps://api.infe.io/v1/models/{model_id}

Get detailed information about a specific model, including context window and pricing.

curl https://api.infe.io/v1/models/infe-pulse

Response

JSON
{
"id": "infe-pulse",
"object": "model",
"created": 1700000000,
"owned_by": "infe",
"description": "Ultra-fast reasoning optimized for speed and efficiency",
"context_window": 131072,
"pricing": {
"input": 0.00011,
"output": 0.00034
}
}

Model Object

FieldTypeDescription
idstringModel identifier (e.g., infe-pulse)
objectstringAlways "model"
createdintegerUnix timestamp of model creation
owned_bystringAlways "infe"
descriptionstringHuman-readable model description
context_windowintegerMaximum context length in tokens
pricingobjectInput/output cost per 1K tokens in IU