openai·chat· vision
GPT-4 Turbo
openai/gpt-4-turbo
At a glance
- · $10.00 input / $30.00 output per 1M tokens (provider list price, billed in credits)
- · OpenAI-compatible — model: "openai/gpt-4-turbo" (provider: openai)
Detail page in progress
For GPT-4 Turbo we maintain specs sourced from provider documentation. A long-form breakdown of strengths, weaknesses, and use cases is in progress. The API already works — see the code snippet below.
How to call it
Drop-in OpenAI-compatible. Just swap the `model` string and you're using this model.
curl https://www.getmorecredits.com/v1/chat/completions \
-H "Authorization: Bearer $GMC_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-4-turbo",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Frequently asked questions
How much does GPT-4 Turbo cost?⌄
Input is $10.00 per million tokens; output is $30.00 per million tokens — provider list price. On getmorecredits.com you pay in credits, no subscription, no minimum spend.
Is GPT-4 Turbo OpenAI-compatible?⌄
Yes. On getmorecredits.com you call GPT-4 Turbo with the same request shape as OpenAI: POST /v1/chat/completions with "model": "openai/gpt-4-turbo". Existing OpenAI SDKs (Python, Node, etc.) work by changing the base URL and API key.