🎁 New Sign up free, 10 calls on us. Up to $1, no card needed.

Amazon

Every Amazon model on Synthorai: one endpoint, live prices.

1 model · realtime / audio · from $0.06/M input

Why Amazon via Synthorai

  • Pay-as-you-go, no subscription. One key, every model; no Amazon account required.
  • Zero prompt retention. Zero prompt retention at the gateway by default; Amazon's data policies apply upstream. Details →

Amazon models & pricing

Model Input /MOutput /M
nova-2-sonicinvited beta $0.06 $0.24

Provider list prices: no platform markup. Prices refresh live on each model's page. These are official list prices. Logged-in customers may see effective prices including workspace discounts on /console/pricing.

Use Amazon models in 30 seconds

import asyncio, base64, json, websockets

URL = "wss://synthorai.io/v1/realtime?model=nova-2-sonic"
# Send ONLY the Authorization header — the beta protocol is retired.
HEADERS = {"Authorization": "Bearer sk-syn-..."}

async def main():
    async with websockets.connect(URL, additional_headers=HEADERS) as ws:
        # 1) configure the speech-to-speech session
        await ws.send(json.dumps({
            "type": "session.update",
            "session": {
                "type": "realtime",
                "output_modalities": ["audio"],
                "audio": {"output": {"voice": "alloy"}},
            },
        }))
        # 2) send input audio (base64 PCM16), then request a spoken reply
        await ws.send(json.dumps({"type": "input_audio_buffer.append", "audio": pcm16_b64}))
        await ws.send(json.dumps({"type": "input_audio_buffer.commit"}))
        await ws.send(json.dumps({"type": "response.create"}))
        # 3) stream the model's audio (and text) back
        async for raw in ws:
            ev = json.loads(raw)
            if ev["type"] == "response.audio.delta":
                play(base64.b64decode(ev["delta"]))   # audio out
            elif ev["type"] == "response.done":
                break

asyncio.run(main())

About Amazon

Amazon's Nova family spans text, multimodal and speech-to-speech models. On Synthorai the speech-to-speech line is reachable through the same realtime socket and key as every other vendor's, with live pay-as-you-go pricing and no Amazon account required.

FAQ

How do I get an Amazon API key without a subscription?

You don't need an Amazon account: sign up on Synthorai, create one API key, and every Amazon model on this page works through the OpenAI-compatible endpoint: pay-as-you-go, no subscription (models marked "invited beta" additionally need an approved application).

What does the Amazon API cost?

Token-billed models start at $0.06/M input tokens; every model's live per-unit price is in the table above. These are provider list prices with no platform markup.

Can I use my own Amazon key (BYOK)?

BYOK isn't available for Amazon yet; requests run on Synthorai's managed channels at the listed rates.

What is Amazon's data-retention policy via API?

Zero prompt retention at the gateway by default; Amazon's data policies apply upstream.

Other providers

Get your free API key Browse all models