Agify.io · Example Payload

Rate Limit Exceeded

When the monthly name lookup allowance is exhausted, the API returns HTTP 429. The allowance resets at the start of the next billing cycle.

Age PredictionName AnalysisDemographicsStatistical APIFree API

Rate Limit Exceeded is an example object payload from Agify.io, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionrequestresponse

Example Payload

Raw ↑
{
  "summary": "Monthly rate limit exceeded",
  "description": "When the monthly name lookup allowance is exhausted, the API returns HTTP 429. The allowance resets at the start of the next billing cycle.",
  "request": {
    "method": "GET",
    "url": "https://api.agify.io/?name=michael&apikey=YOUR_API_KEY",
    "headers": {},
    "curl": "curl \"https://api.agify.io/?name=michael&apikey=YOUR_API_KEY\""
  },
  "response": {
    "status": 429,
    "headers": {
      "Content-Type": "application/json",
      "X-Rate-Limit-Limit": "2500",
      "X-Rate-Limit-Remaining": "0",
      "X-Rate-Limit-Reset": "1750000000"
    },
    "body": {
      "error": "Request limit reached. Upgrade to a paid plan for more requests."
    }
  }
}