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/modelsResponse
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-pulseResponse
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
| Field | Type | Description |
|---|---|---|
| id | string | Model identifier (e.g., infe-pulse) |
| object | string | Always "model" |
| created | integer | Unix timestamp of model creation |
| owned_by | string | Always "infe" |
| description | string | Human-readable model description |
| context_window | integer | Maximum context length in tokens |
| pricing | object | Input/output cost per 1K tokens in IU |