Last refreshed 2026-05-10. Next refresh: weekly.
Why use GPT-4o (05-13) on Replicate API?
Replicate API offers GPT-4o (05-13) with pay-as-you-go pricing at $2.50/1M input tokens. Replicate is a cloud-based platform that enables users to run machine learning models easily and efficiently.
Compare GPT-4o (05-13) across 4 providers to find the best fit for your use caseSetup recipe
Python + curlpip install replicateexport REPLICATE_API_TOKEN=...import replicate
output = replicate.run(
"gpt-4o-2024-05-13",
input={"prompt": "Hello"}gpt-4o-2024-05-13Request example
import replicate
# reads REPLICATE_API_TOKEN from env
# gpt-4o-2024-05-13 format: "owner/model-name" (latest version) or "owner/model-name:version-hash"
output = replicate.run(
"gpt-4o-2024-05-13",
input={"prompt": "Hello"}
)
# Output is a list or generator depending on the model
print("".join(output))Gotchas
- Replicate uses "owner/model-name" format (e.g. "meta/meta-llama-3-8b-instruct") for the latest version, or "owner/model-name:version-sha" to pin to a specific version. The REST endpoint splits owner and model-name into the path: /v1/models/{owner}/{model-name}/predictions.
- The examples expect REPLICATE_API_TOKEN; rename it only if your application config maps the new variable.
Compare GPT-4o (05-13) Across Providers
| Provider | Input (per 1M) | Output (per 1M) |
|---|---|---|
| Azure OpenAI | $5.00 | $15.00 |
| OpenAI API | $2.50 | $10.00 |
| OpenRouter | $5.00 | $15.00 |
| Replicate API | $2.50 | $10.00 |
Pricing
| Type | Price (per 1M) |
|---|---|
| Input tokens | $2.50 |
| Output tokens | $10.00 |
Capabilities
About GPT-4o (05-13)
GPT-4o, or GPT-4 Omni, is OpenAI's premier multimodal AI model, introduced on May 13, 2024. It is designed to handle and generate content from various input types, including text, audio, and visual data, using a unified model, unlike its predecessors which required separate models for different modalities. This model is notable for its rapid response times averaging 320 milliseconds, which align with human conversational speed, along with being 50% more cost-effective than GPT-4 Turbo. Although it mirrors GPT-4 Turbo in standard benchmark performance, GPT-4o excels in multilingual, audio, and vision tasks. Despite its advancements, it shares the limitation of a knowledge cutoff at October 2023 and is prone to generating incorrect information, like other language models. A more compact and economical version, GPT-4o mini, is also available.
FAQ
What does GPT-4o (05-13) cost on Replicate API?
On Replicate API, GPT-4o (05-13) costs $2.5 per 1M input tokens and $10 per 1M output tokens.
What is the context window for GPT-4o (05-13) on Replicate API?
GPT-4o (05-13) supports a 128,000 token context window on Replicate API.
How does Replicate API compare to other GPT-4o (05-13) providers?
GPT-4o (05-13) is available from 4 providers. The cheapest input pricing is $2.50/1M tokens from OpenAI API.
Who created GPT-4o (05-13)?
GPT-4o (05-13) was created by OpenAI as part of the GPT-4o model family.
Is GPT-4o (05-13) open source?
GPT-4o (05-13) is not open source; the seed data lists it as proprietary.