Overview
Creat api keyCurrencyUSD
Input0.15
Output0.60
Context window128K
Generate API Key Generate your API Key to securely access Indox Router's AI models. Integrate with OpenAI-compatible tools, run queries, and build powerful AI applications — all with a single secure key.
python
typescript
CURL
from indoxrouter import Client
client = Client(api_key="[LOGIN TO GET API KEY]")
response = client.chat(
messages: [{"role": "user", "content": ""}],
model: "openai/gpt-4o-mini",
max_tokens: '' ,
frequency_penalty: '' ,
presence_penalty: '' ,
temperature: '' ,
top_p: '' ,
stream:true
)
print("Response:", response["data"])