Skip to main content
GET
/
v1
/
credits
/
balance
/credits/balance
curl --request GET \
  --url https://api.linkup.so/v1/credits/balance \
  --header 'Authorization: Bearer <token>'
{
  "balance": 123.456
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

balance
number
required

The number of credits remaining in your account.

Example:

123.456