Integration API quickstart
Rate-limiting & pagination
1min
We do not have hard rate limits at present. However, we reserve the right to block unreasonable requests on a case-by-case basis.
A good rule of thumb is to make no more than 10 requests a second.
To ensure efficient performance and distribute system resources evenly, pagination is mandatory for all GET endpoints that return multiple objects as of January 8, 2025.
Pagination is controlled using the following query parameters:
- page[size]: Specifies the number of records per page (maximum: 500).
- page[number]: Indicates the page number to retrieve.
Example Request:
GET https://api.brella.io/api/integration/organizations/{organizationId}/events?page[size]=50&page[number]=1
This request retrieves 50 records per page, starting with page 1.
Updated 10 Dec 2024
Did this page help you?