StepAudio 2.5 Chat API

StepFun audio and text conversation model with text output and paralinguistic understanding.

StepFunText Generation256K contextInternationalProprietary EndpointNew

About StepAudio 2.5 Chat

StepFun audio and text conversation model with text output and paralinguistic understanding.

Text output is exposed through Chat Completions, Responses, Messages, and Gemini-compatible generateContent. Linkup web search is available through web_search_linkup for text prompts and adds $0.013 per call when invoked.

Also known as StepAudio Chat, StepFun StepAudio 2.5 Chat, StepAudio-2.5-Chat, stepaudio-2-5-chat

audio inputspeech understandingprompt cachemultimodalweb search

StepAudio 2.5 Chat specs

Model ID
stepaudio-2-5-chat
Provider
StepFun
Category
Text Generation
Released
-
Context window
256K tokens
Max output
131,072 tokens
Input
TextAudio
Output
Text
Structured output
JSON Mode
Region
International
Endpoints
POST/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/stepaudio-2-5-chat:generateContent
Alternate model IDs
stepaudio-2.5-chatstepfun/stepaudio-2-5-chatstepfun/stepaudio-2.5-chat

StepAudio 2.5 Chat API pricing

Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.

Type
Spec
Rate
Input
per 1M prompt tokens
$1.43
Output
per 1M generated tokens
$3.57
Implicit cache read
per 1M cached input tokens
$0.29
Web Search (Linkup)
per call when invoked
$0.013
Compare on the full pricing page

How to call the StepAudio 2.5 Chat API

StepAudio 2.5 Chat serves the OpenAI-compatible Chat Completions API. Point any OpenAI SDK at https://api.empiriolabs.ai/v1 with your EmpirioLabs API key and use the model id stepaudio-2-5-chat. Get an API key from the EmpirioLabs dashboard.

cURL
curl https://api.empiriolabs.ai/v1/chat/completions \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "stepaudio-2-5-chat",
    "messages": [
      {"role": "user", "content": "Write a haiku about the ocean."}
    ]
  }'
Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://api.empiriolabs.ai/v1",
    api_key="YOUR_EMPIRIOLABS_API_KEY",
)

response = client.chat.completions.create(
    model="stepaudio-2-5-chat",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Full StepAudio 2.5 Chat API reference

StepAudio 2.5 Chat API parameters

Request parameters supported by the StepAudio 2.5 Chat API on EmpirioLabs. Defaults apply when a field is omitted.

ParameterTypeDefaultRange / valuesDescription
temperaturenumber0.50 to 2Sampling temperature.
top_pnumber0.90 to 1Nucleus sampling probability mass.
max_tokensinteger40961 to 131072Maximum output tokens. Reasoning tokens count toward this limit.
stoparray--Stop sequences.
frequency_penaltynumber00 to 1Penalty for repeated tokens.
modalitiesarray["text"]-Response modalities. Text output is currently exposed.
response_formatobject--OpenAI-compatible response format. Use {"type":"json_object"} for JSON object mode.
reasoning_formatenumgeneralgeneral, deepseek-styleReasoning trace format returned by StepFun.
toolsarray--OpenAI-compatible function tools.
tool_choicestring--OpenAI-compatible tool choice.
web_search_linkupbooleanfalse-Optional web search powered by Linkup. When enabled, recent web sources are retrieved using your latest user message as the query and provided to the model as additional context. Adds $0.013 per call when invoked on top of the model's normal token cost. Disabled by default.

Good to know

Accepts text or base64 audio input and returns text. Linkup web search is available for text prompts. Public USD pricing is converted from StepFun official CNY pricing at 7 CNY per USD, matching the conversion basis used by StepFun English pricing rows.

StepAudio 2.5 Chat API: common questions

How much does the StepAudio 2.5 Chat API cost?

On EmpirioLabs, StepAudio 2.5 Chat is billed pay as you go: Input $1.43 per 1M prompt tokens; Output $3.57 per 1M generated tokens; Implicit cache read $0.29 per 1M cached input tokens. The live rate card on this page always matches what the API charges.

What is the context window of StepAudio 2.5 Chat?

StepAudio 2.5 Chat supports a 256K-token context window with up to 131,072 output tokens per response.

Is the StepAudio 2.5 Chat API OpenAI-compatible?

Yes. StepAudio 2.5 Chat serves the OpenAI-compatible Chat Completions API, so existing OpenAI SDKs work by pointing base_url at https://api.empiriolabs.ai/v1 and setting the model id to stepaudio-2-5-chat.

Can I try StepAudio 2.5 Chat in the browser before integrating?

Yes. The EmpirioLabs playground runs StepAudio 2.5 Chat in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a StepAudio 2.5 Chat API key?

Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.

Ready to use better endpoints?

Check out our pricing or reach out if you want your own model deployed on our stack.