Step 3.5 Flash 2603 API

Agent-optimized Step 3.5 Flash variant with low and high reasoning effort modes.

StepFunText Generation256K contextReleased Apr 2, 2026InternationalProprietary EndpointNew

About Step 3.5 Flash 2603

Agent-optimized Step 3.5 Flash variant with low and high reasoning effort modes.

Use reasoning_effort low to reduce reasoning tokens or high for deeper agent work. Prompt-cache hits are billed at StepFun cache-hit rates. Linkup web search is available through web_search_linkup and adds $0.013 per call when invoked.

Also known as Step Flash 2603, StepFun Step 3.5 Flash 2603, Step-3.5-Flash-2603, step-3-5-flash-2603

reasoningfunction callingprompt cacheagentic codingweb search

Step 3.5 Flash 2603 specs

Model ID
step-3-5-flash-2603
Provider
StepFun
Category
Text Generation
Released
Apr 2, 2026
Context window
256K tokens
Max output
131,072 tokens
Input
Text
Output
Text
Structured output
Not supported
Region
International
Endpoints
POST/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/step-3-5-flash-2603:generateContent
Alternate model IDs
step-3.5-flash-2603stepfun/step-3-5-flash-2603stepfun/step-3.5-flash-2603

Step 3.5 Flash 2603 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
$0.10
Output
per 1M generated tokens
$0.30
Implicit cache read
per 1M cached input tokens
$0.02
Web Search (Linkup)
per call when invoked
$0.013
Compare on the full pricing page

How to call the Step 3.5 Flash 2603 API

Step 3.5 Flash 2603 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 step-3-5-flash-2603. 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": "step-3-5-flash-2603",
    "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="step-3-5-flash-2603",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Full Step 3.5 Flash 2603 API reference

Step 3.5 Flash 2603 API parameters

Request parameters supported by the Step 3.5 Flash 2603 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.
reasoning_effortenumlowlow, highReasoning effort for the agent-optimized Step 3.5 Flash 2603 route.
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

Text-only agent model with 256K context, function tools, prompt-cache billing, reasoning_effort low or high, and optional Linkup web search.

Step 3.5 Flash 2603 API: common questions

How much does the Step 3.5 Flash 2603 API cost?

On EmpirioLabs, Step 3.5 Flash 2603 is billed pay as you go: Input $0.10 per 1M prompt tokens; Output $0.30 per 1M generated tokens; Implicit cache read $0.02 per 1M cached input tokens. The live rate card on this page always matches what the API charges.

What is the context window of Step 3.5 Flash 2603?

Step 3.5 Flash 2603 supports a 256K-token context window with up to 131,072 output tokens per response.

Is the Step 3.5 Flash 2603 API OpenAI-compatible?

Yes. Step 3.5 Flash 2603 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 step-3-5-flash-2603.

Can I try Step 3.5 Flash 2603 in the browser before integrating?

Yes. The EmpirioLabs playground runs Step 3.5 Flash 2603 in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a Step 3.5 Flash 2603 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.