Skip to main content
POST
/
catchAll
/
user
/
limits
Get plan limits
curl --request POST \
  --url https://catchall.newscatcherapi.com/catchAll/user/limits \
  --header 'x-api-key: <api-key>'
{
  "features": [
    {
      "name": "Jobs Concurrency",
      "code": "Jobs_Concurrency",
      "value_type": "integer",
      "value": 20,
      "current_usage": 1
    },
    {
      "name": "Max Results",
      "code": "Job_Max_Results",
      "value_type": "integer",
      "value": 100000,
      "current_usage": 0
    },
    {
      "name": "Monthly Granted Credits",
      "code": "monthly_free_credits",
      "value_type": "integer",
      "value": 200000,
      "current_usage": 0
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication.

Response

Plan limits retrieved successfully

features
object[]
required

Plan features with current usage.