# StepFun: step-1o-audio — API on ChinaAPI

> StepFun step-1o-audio — earlier-generation end-to-end voice model with multi-language support and tool calling, capped at 30 minutes per interaction. Largely superseded by the StepAudio 2.5 line and retained for workloads already built against it.

- Canonical page: https://chinaapi.ai/models/step-1o-audio/
- Model ID: `step-1o-audio`
- Context window: 
- Modalities: Text
- Pricing: $3.85/M input, $9.24/M output tokens (USD)
- Endpoint: OpenAI-compatible `POST https://api.chinaapi.ai/v1/chat/completions`
- Pricing basis: Token-model rates are synchronized from the gateway and may follow providers' official China list prices where configured. Live pricing is authoritative.
- Access: no mainland-China account or phone number required; $2 free trial credit
- Sign up: https://dash.chinaapi.ai/register?lang=en&utm_source=chinaapi&utm_medium=model-md&utm_campaign=step-1o-audio

## Quickstart

```
curl -X POST https://api.chinaapi.ai/v1/chat/completions \
  -H "Authorization: Bearer $CHINAAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "step-1o-audio",
    "messages": [
      {"role": "user", "content": "Summarize the main tradeoffs for this API workload."}
    ]
  }'

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["CHINAAPI_API_KEY"],
    base_url="https://api.chinaapi.ai/v1",
)

response = client.chat.completions.create(
    model="step-1o-audio",
    messages=[
        {"role": "user", "content": "Summarize the main tradeoffs for this API workload."}
    ],
)
print(response.choices[0].message.content)
```

## FAQ

**How do I use step-1o-audio?**
Use step-1o-audio through ChinaAPI with an API key and the OpenAI-compatible endpoint shown on this page.

**How much does step-1o-audio cost?**
step-1o-audio is $3.85/M input, $9.24/M output tokens, paid in USD. The live pricing page is authoritative. Token-model rates are synchronized from the gateway and may follow providers' official China list prices where configured. Live pricing is authoritative.

**Does step-1o-audio need a Chinese account?**
No. ChinaAPI provides access without a mainland-China account or phone number and includes a $2 free trial. Check live pricing for the displayed USD rate.

---
Markdown twin of https://chinaapi.ai/models/step-1o-audio/ — generated by scripts/gen_model_pages.py. Full catalog: https://chinaapi.ai/llms-full.txt
