Best practices
Response type
The InEvent API will always give you a consistent response
when successful and a bodiless
response in case it fails. Here is an example of a successful response:
And here is an example of a unsuccessful one:
Pagination
To paginate on .get
and .find
endpoints, you must use the limit
and offset
query attributes. The limit
query attribute is set to 20 by default and can go up to 100. The offset
query attribute is an integer that describes the index of the last item on the previous page.
Rate limit
You might get blocked if you exceed 10 API calls per second on a single tokenID
or 100 API calls per second on the same machine.
Last updated