Sign in
GETAccountFree

Get credit balance

GET https://api.instagramapi.dev/v1/credits

Returns the number of credits remaining on your account. This call is free — it never consumes a credit and does not query Instagram. Use it to monitor usage or surface a live balance in your own dashboard.

Parameters

This endpoint takes no parameters — just your API key.

Example request

curl "https://api.instagramapi.dev/v1/credits" \
  -H "Authorization: Bearer $INSTAGRAMAPI_KEY"

Try it

Live request · uses 0 credits

Example response

{
  "data": { "credits_remaining": 4987 },
  "meta": {
    "endpoint": "credits",
    "credits_charged": 0,
    "credits_remaining": 4987
  }
}