DeepSeek API
🇯🇵 Japanese
  • 🇺🇸 English
  • 🇯🇵 Japanese
  • 🇰🇷 Korea
  • 🇵🇹 Portuguese
  1. APIリファレンス
DeepSeek API
🇯🇵 Japanese
  • 🇺🇸 English
  • 🇯🇵 Japanese
  • 🇰🇷 Korea
  • 🇵🇹 Portuguese
  • 迅速に開始します
    • 最初のAPI呼び出し
    • モデルと価格
    • Temperature パラメーター
    • トークンとトークンの使用
    • 制限
    • エラーコード
  • APIリファレンス
    • 導入
    • チャット完了を作成します
      POST
    • FIM完了を作成(ベータ)
      POST
    • モデルをリストします
      GET
    • ユーザーのバランスを取得します
      GET
  • APIガイド
    • 推論モデル(Deepseek Reautoner)
    • 会話の複数のラウンド
    • チャットプレフィックスの完了(ベータ)
    • FIM完了(ベータ)
    • JSON出力
    • 関数呼び出し
  • FAQ
    • FAQ
  1. APIリファレンス

ユーザーのバランスを取得します

GET
https://api.deepseek.com/user/balance
現在、ユーザーのバランスを取得します
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.deepseek.com/user/balance' \
--header 'Authorization: Bearer <TOKEN>' \
--header 'Authorization;'
Response Response Example
{
  "is_available": true,
  "balance_infos": [
    {
      "currency": "CNY",
      "total_balance": "110.00",
      "granted_balance": "10.00",
      "topped_up_balance": "100.00"
    }
  ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
Authorization
string 
required
Example:
Bearer <TOKEN>

Responses

🟢200Success
application/json
Body
is_available
boolean 
required
balance_infos
array [object {4}] 
required
currency
string 
optional
total_balance
string 
optional
granted_balance
string 
optional
topped_up_balance
string 
optional
Previous
モデルをリストします
Next
推論モデル(Deepseek Reautoner)
Built with