Back to Models
OpenAI
GPT-4 Turbo
GPT-4 Turbo from OpenAI — 128K-token context, multimodal vision, function calling.
Context Window
128.0K
tokensMax Output
16K
tokensInput / 1M
$10.00
per 1M tokensOutput / 1M
$30.00
per 1M tokensCapabilities
Vision
Function Calling
Streaming
JSON Mode
System Prompt
Tool Use
Pricing Comparison
Quick Start
curl
# Cache: enabled (org default). Pass nemo_cache: false to skip.
# Use -i to see cost + guardrails in response headers:
# x-nemo-request-cost: 0.00347
# x-nemo-guardrails-applied: pii-detection,prompt-injection
# nemo_cache: pass "nemo_cache": false in body to skip cache
curl https://api.nemorouter.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $NEMOROUTER_API_KEY" \
-d '{
"model": "gpt-4-turbo",
"temperature": 1,
"max_tokens": 1024,
"messages": [
{"role": "user", "content": "Hello! What models do you support?"}
]
}'Replace sk-nemo-... with your NemoRouter API key. Use gpt-4-turbo as the model identifier.