Skip to main content
Log in Get Started
Browse the API

Endpoint

Batch

One HTTP call, many REST subrequests. Each subrequest spends a rate-limit token and a quota unit.

POST /api/v1/batch

Request

{
  "requests": [
    {
      "body": {
        "day": 15,
        "hour": 14,
        "latitude": 40.7128,
        "longitude": -74.006,
        "minute": 30,
        "month": 5,
        "year": 1990
      },
      "id": "req1",
      "method": "POST",
      "path": "/natal"
    }
  ]
}
  • batch_limit comes from the plan (default 10). There is no Starter=15 path in code.
  • A batch larger than any remaining allowance is 429 before execute; reservations are all-or-nothing.
  • Rejected 429 responses include the same allowance headers plus Retry-After.