API Reference

Models

InferexAI routes your requests through a model map configured on the backend. Use the model ID in the model field of your requests.

Available models

defaultActive
via Simplismart
UPSTREAM MODEL
google/gemma-3-4b-it
CONTEXT WINDOW
8 192 tokens
PROVIDER
Simplismart

Default model for all requests. Best for general-purpose chat and instruction tasks.

Fast inferenceInstruction followingLow cost
More models (OpenAI, Anthropic, Groq) are on the roadmap. Additional models will appear here when enabled by your administrator.

List models

GET/v1/models

Returns a list of all models currently available on the gateway.

bash
curl https://inferexapi.cloudvoice.in/v1/models \
  -H "Authorization: Bearer sk-live-your-key-here"
response.json
{
  "object": "list",
  "data": [
    {
      "id": "default",
      "object": "model",
      "created": 1748000000,
      "owned_by": "inferexai"
    }
  ]
}