OpenAI: gpt-realtime-translate
gpt-realtime-translate- Price
- From $0.000567
- Modalities
- Chat
Getting started
Create API key
Create a key in Console, then use it with every model on the platform.
Send your first request
Copy the example for your language and run it against the endpoint.
TranslationWebSocketWS/v1/realtime// npm install ws import WebSocket from 'ws'; const socket = new WebSocket("wss://api.tokenlab.sh/v1/realtime?model=gpt-realtime-translate", { headers: { Authorization: "Bearer sk-xxx" } }); socket.on('open', () => { // Send the input events supported by this model with socket.send(...). // https://docs.tokenlab.sh/api-reference/realtime/connect }); socket.on('message', (data) => console.log(data.toString())); socket.on('error', (error) => console.error(error)); socket.on('close', (code, reason) => console.log(code, reason.toString())); // Close the session when finished. process.on('SIGINT', () => socket.close());
Pricing
Official price is the model maker's public baseline. TokenLab price is what you pay for this model on TokenLab.
Pricing
Per second- TokenLab price
- $0.000567Per second
- Official price
- $0.000567Per second
| Official pricePer second | TokenLab pricePer second | Discount | |
|---|---|---|---|
| Price | $0.000567Per second | $0.000567Per second | - |
Usage & activity
Success rate is the share of requests that completed. Latency is how long a full response takes; P95 means 95% of requests finished within that time.
Usage & availability
Last 24 hoursNo data yet
Data is based on aggregate user requests, excluding status checks.
Open in Console
Open gpt-realtime-translate in Console with a prompt ready to edit or send.
Help me try gpt-realtime-translate with translation at /v1/realtime. Show the result and cost.
Use cases
Localization
Translate product, support, and operational copy through one API.
Side-by-side test
Compare response quality, latency, and price side by side.
Prompt examples
Translate this launch announcement into concise product copy.
Send the smallest possible request and show me the result and cost.
Compare this model with a cheaper one in the same category — when is each worth it?
FAQ
How much does gpt-realtime-translate cost?
On TokenLab, gpt-realtime-translate costs $0.000567 Per second. The pricing table above shows the full breakdown.
How do I test gpt-realtime-translate?
Open gpt-realtime-translate in Create. A sample for /v1/realtime will be ready to try.
Which endpoint should gpt-realtime-translate use?
Use https://api.tokenlab.sh/v1/realtime for gpt-realtime-translate. The request example below shows the matching code shape.
Can I test gpt-realtime-translate before integrating it?
Yes. Open Console starts a ready draft for gpt-realtime-translate and keeps your prompt after sign-in, so you don’t lose context.
Which operations does gpt-realtime-translate support?
gpt-realtime-translate supports Translation. Select an operation above to see its endpoint and request example.