
場面のイメージ画像。このモデルの出力ではありません
料金: 1.05 credits per 1K input tokens · ≈ $0.0005 · 3.15 credits per 1K output tokens · ≈ $0.0016高い安定性と、APIAny プラットフォーム上の詳細な使用履歴を提供します。
プロンプト設定例:生成結果はありません
Sampling temperature.
Output budget includes reasoning and final answer tokens.
Optional reasoning effort. Leave unset to use the model default. Higher effort can use more tokens and time.
USD 見積 ≈ $0.052:チャージ枠 $999:1 USD = 2,000 クレジット。

履歴
このブラウザ内にローカル保存
0 件実行中 · 0 件完了
入力
≈ $0.0005
出力
≈ $0.0016
キャッシュ読み取り
≈ $0.000018
コンテキスト
最大出力
認証
すべてのリクエストで Authorization ヘッダーに Bearer トークンを含める必要があります。コンソールで API Key を作成してください。
Authorization: Bearer YOUR_API_KEYhttps://apiany.ai/v1/chat/completionsリクエストパラメータ
| パラメータ | タイプ | 必須 | 説明 |
|---|---|---|---|
model | 文字列 | 必須 | 呼び出すモデル識別子。このモデルの ID を使用します。 |
messages | 配列 | 必須 | OpenAI チャット形式のメッセージ履歴(role + content)。 |
stream | ブール値 | 任意 | true の場合、レスポンスは SSE ストリームとして返されます。 |
リクエスト例
curl "https://apiany.ai/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v4-flash",
"messages": [
{
"role": "user",
"content": "Prioritize replenishment from this fictional inventory. SKU A: stock 12, average daily sales 4, lead time 5 days. SKU B: stock 30, sales 3/day, lead time 2 days. SKU C: stock 4, sales 2/day, lead time 4 days. Assume steady demand, no incoming stock and no safety stock. Compute days of cover, identify lead-time shortfalls and explain the ordering priority in a short table."
}
],
"temperature": 1,
"max_tokens": 32768,
"reasoning_effort": "high"
}'レスポンス例
{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"model": "deepseek-v4-flash",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Hello! How can I help?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 12,
"completion_tokens": 18,
"total_tokens": 30
}
}