GET /v1/modelsList model IDs available to the current API key
Compatible API guide
Infistar provides a gateway for common OpenAI request formats. Existing OpenAI SDKs, server applications, and clients that accept a custom base URL can usually connect by changing the endpoint and API key, then selecting a model ID from the live catalog.
Use https://infistar.ai/v1 internationally or https://coneverse.com/v1 in mainland China. Authenticate with Authorization: Bearer YOUR_API_KEY. Endpoint support varies by model, so confirm the live model catalog and GET /v1/models response before integrating.
GET /v1/modelsList model IDs available to the current API key
POST /v1/chat/completionsMulti-turn chat and streaming text
POST /v1/responsesResponses API request format
POST /v1/embeddingsText vectors and embedding models
POST /v1/images/generationsImage models that declare this endpoint
MODEL_ID is a placeholder. Replace it with a currently listed model that explicitly supports Chat Completions.
curl https://infistar.ai/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "MODEL_ID",
"messages": [{"role": "user", "content": "Hello"}],
"stream": false
}'