Back to modelsBuy Plan
Meituan
LongCat Flash Chat
LongCat Flash Chat 是美团 LongCat 系列高效对话模型,面向低延迟高吞吐对话场景。
Quick Stats
Context
128K
Max Output
8K
Provider
Meituan
Specs
1
Modalities
in textout text
Specs & List Price (per 1M tokens)
Quality
Input $4.99968Output $20.00016Cache read $0.100001
Recommended Plan
LongCat Flash Chat Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
meituan/longcat-flash-chatcURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "meituan/longcat-flash-chat",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python (openai SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="meituan/longcat-flash-chat",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.