For AI agents and LLMs: a structured documentation index is available at /llms.txt. Every page has a Markdown sibling — append .md to any URL.

Skip to content
Paddle Docs home

Too many datapoints

The query would return more datapoints on one page than the Explore endpoint allows.

Example response
{
"error": {
"type": "request_error",
"code": "too_many_datapoints",
"detail": "The query exceeds the maximum of 10000 datapoints per page.",
"documentation_url": "https://developer.paddle.com/errors/metrics/too_many_datapoints"
},
"meta": {
"request_id": "00000000-0000-0000-0000-000000000000"
}
}

Details

Status code
400
Error code
too_many_datapoints
Error message
The query exceeds the maximum of %d datapoints per page.

Common causes

  • per_page multiplied by the number of time buckets in your date range exceeds 10,000 datapoints.

Troubleshooting

  • Narrow the date range between from and to.
  • Use a coarser interval.
  • Lower per_page so fewer series are returned on one page.

Was this page helpful?