DeepSeek API
🇰🇷 Korea
  • 🇺🇸 English
  • 🇯🇵 Japanese
  • 🇰🇷 Korea
  • 🇵🇹 Portuguese
  1. API 참조
DeepSeek API
🇰🇷 Korea
  • 🇺🇸 English
  • 🇯🇵 Japanese
  • 🇰🇷 Korea
  • 🇵🇹 Portuguese
  • 빨리 시작하십시오
    • 첫 번째 API 호출
    • 모델 및 가격
    • 온도 매개 변수
    • 토큰 및 토큰 사용
    • 한계
    • 오류 코드
  • API 참조
    • 소개
    • 채팅 완료를 만듭니다
      POST
    • FIM 완료 생성 (Beta)
      POST
    • 모델을 나열합니다
      GET
    • 사용자 균형을 얻으십시오
      GET
  • API 가이드
    • 추론 모델 (Deepseek Reautoner)
    • 여러 라운드의 대화
    • 채팅 접두사 완료 (Beta)
    • FIM 완료 (Beta)
    • 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 ' \
--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 {{API_KEY}}

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