Rate Limits

The Brick API has rate limits to ensure stability and increase security of our services in order to provide a higher a availability to our customers.

The default rate limits are:

EnvironmentLimit
Production50 requests per minute

Limit exceeded

In case of reaching the limit, the Brick API will reject the next requests until the limit time be refreshed.

The return in case of Rate Limit Exceeded will be:

{
	"data": null,
  "status": 429,
  "errors": [
    {
    	"code": "RATE_LIMIT_EXCEEDED",
      "message": "Too many requests per minute"
    }
  ]
}