GET
/
v1
/
credits
curl --request GET \
  --url https://supertoneapi.com/v1/credits \
  --header 'x-sup-api-key: <x-sup-api-key>'
{
  "balance": 123
}

이 API는 현재 계정의 사용 가능한 크레딧 잔액을 조회합니다.
Supertone Play 및 API는 동일한 크레딧 시스템을 사용하므로, Play에서 충전한 크레딧은 API에도 그대로 적용됩니다.

요청 방법

GET /v1/credits
x-sup-api-key: [YOUR_API_KEY]

응답 예시

{
  "balance": 146
}

현재 146 크레딧이 사용 가능함을 의미합니다.

참고사항

  • 크레딧은 초 단위 기준으로 과금됩니다.
  • 크레딧은 Play와 API에서 공유됩니다.
  • 신규 가입 시 기본 체험 크레딧이 제공될 수 있습니다.

Headers

x-sup-api-key
string
required

The API key to authenticate and authorize access to the service. This key is required for every request.

Response

200
application/json

Credit balance of the user.

The response is of type object.