Get credit balance
GET https://api.bouncify.io/v1/info
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
apikey | string | Required | Your API key. |
Successful Response
JSON
HTTP/1.1 200 OK
{
"success": true,
"credits_info": {
"credits_remaining": 100
}
}
Response parameter
| Parameter | Type | Definition |
|---|---|---|
credits_remaining | Integer | Available credits in your account |
Other Response
The response you get when the API key is invalid:
HTTP/1.1 401 Unauthorized
{
"result": "Invalid API key",
"success": false
}
Example
Node / Shell
curl --request GET \
--url https://api.bouncify.io/v1/info \
--header 'accept: application/json'