> For the complete documentation index, see [llms.txt](https://developer.paddle.com/llms.txt).

# Too many datapoints

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

---

## Example

```json
{
  "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

| Attribute | Value |
| --- | --- |
| 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.

## Common solutions

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