Hello,
I am using n8n.io to make some API calls to the Company search endpoint and am getting an API_LIMIT error:
The body is the following:
```
{
“filterGroups”: [
{
“filters”: [
{
“propertyName”: “school_id”,
“operator”: “HAS_PROPERTY”
}
]
}
],
“properties”:[“school_id”,“name”],
“limit”: 200,
“after”: 0
}
```
n8n has a pagination feature that allows you to page through results and I have it set to the following:
I have 16000+ total records that I need to search through for this request. My guess is that I need to make multiple requests that both stay under the 10000 limit, which I am fine doing, but I don’t see where to set that in the body parameters and HubSpot API does not seem to be responding to the n8n’s default parameters.
Grateful for any help!

