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.

Build this with an AI agent

Paste this prompt into Claude, Codex, or any coding agent.

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 responses

Switch tabs to see the body shape for success and each error status.

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

Response fields

Fields returned under data on a 200 response. Every response also includes a meta object with billing info.

FieldTypeDescription
credits_remainingnumberNumber of credits left on your account.