Skip to main content
POST
/
v1
/
credits
Check API Credits
curl --request POST \
  --url https://api.casparser.in/v1/credits \
  --header 'x-api-key: <api-key>'
{
  "used": 15,
  "remaining": 35,
  "limit": 50,
  "is_unlimited": false,
  "resets_at": "2026-02-15T00:00:00Z",
  "enabled_features": [
    "cams_kfintech_cas_parser",
    "cdsl_cas_parser",
    "nsdl_cas_parser"
  ]
}

Authorizations

x-api-key
string
header
required

Your API key for authentication. Use sandbox-with-json-responses as Sandbox key.

Response

Credits information retrieved successfully

used
number

Number of credits used this billing period

Example:

15

remaining
number | null

Remaining credits (null if unlimited)

Example:

35

limit
integer

Total credit limit for billing period

Example:

50

is_unlimited
boolean

Whether the account has unlimited credits

Example:

false

resets_at
string<date-time> | null

When credits reset (ISO 8601)

Example:

"2026-02-15T00:00:00Z"

enabled_features
string[]

List of API features enabled for your plan

Example:
[
  "cams_kfintech_cas_parser",
  "cdsl_cas_parser",
  "nsdl_cas_parser"
]