๐Ÿšถ

StepFun

Speed: โšก 93 tok/s avg
Models: 6
Price: $9/mo Step Plan
Status: โœ… Online
Avg Speed
93 tok/s
Models
6
Price
$9/mo
Best For
Step models, STT/TTS

๐Ÿ’ฐ Plan & Pricing

โ„น๏ธ
Step Plan โ€” $9/mo
Access to all Step models including chat, vision, reasoning, STT, and TTS. Own models only (step-3.x series).

๐Ÿ”‘ API Key

4d2tfWopcoBE9gHPP5boAGiYCrFB7iFiFCt1EluOGoWLVlQVxePCvNh6MwN5I7MKE

๐ŸŒ Endpoint

https://api.stepfun.ai/step_plan/v1/chat/completions

๐Ÿ“ฆ Models (6 LLMs + 2 Audio)

ModelSpeedCategoryNotes
step-2-16kโšก 93 tok/sChatStep-2 flagship, 16K context
step-3-chatโšก 93 tok/sChat๐Ÿ”ฅ Primary chat model
step-3-reasoningโšก 85+ tok/sReasoningThinking model
step-3-vlโšก 93 tok/sVision/OCRVision-language model
step-1.5v-7bโšก 100+ tok/sChat/VisionSmaller vision model
step-1-flashโšก 120+ tok/sFastโšก Ultra-fast lightweight

Audio Models โ€” step-asr (STT) and step-tts (TTS) included in all plans

๐Ÿ’ป cURL Example

curl -X POST https://api.stepfun.ai/step_plan/v1/chat/completions \
  -H "Authorization: Bearer 4d2tfWopcoBE9gHPP5boAGiYCrFB7iFiFCt1EluOGoWLVlQVxePCvNh6MwN5I7MKE" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "step-3-chat",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

๐Ÿ Python Example

from openai import OpenAI

client = OpenAI(
    api_key="4d2tfWopcoBE9gHPP5boAGiYCrFB7iFiFCt1EluOGoWLVlQVxePCvNh6MwN5I7MKE",
    base_url="https://api.stepfun.ai/step_plan/v1"
)

response = client.chat.completions.create(
    model="step-3-chat",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

โš ๏ธ Pitfalls & Notes

๐Ÿ’ก
Own Models Only โ€” StepFun only hosts its own Step model family. No third-party models available.
๐Ÿ’ก
STT & TTS โ€” StepFun uniquely includes speech-to-text and text-to-speech endpoints alongside chat models.
โš ๏ธ
Chinese Optimization โ€” Step models are particularly strong for Chinese/English bilingual tasks.

๐Ÿท๏ธ Categories

Chat Vision STT/TTS Reasoning OCR