GET
/api/v1/events Secret keyReturns events from the secret key's own organization and environment, newest first. The window can reach back 30 days.
Try it
Sends this request from your browser to Fingerly. Development secret keys only, and the key is not stored.
Query parameters
fromstringDefault24 hours agoStart of the window, inclusive, RFC 3339.tostringDefaultnowEnd of the window, exclusive, RFC 3339.pageintegerDefault1One-based page number. The offset may not exceed 10,000 events.limitintegerDefault10Events per page, at most 200.visitorstringOnly events for this exact visitor ID.levelstringOnly events atlow,mediumorhigh.
from must be before to, the window may span at most 30 days, and it may not start more than 30 days ago. Otherwise the request fails with 422 invalid_window.
Response
rowsarrayThe events on this page. Each has the event fields.pageintegerThis page's number.page_sizeintegerThe page size applied.
There is no total count. A page with fewer rows than page_size is the last one.
Errors
| Status | Code | When |
|---|---|---|
401 | unauthorized | The key is not a valid secret key. |
422 | invalid_window | The window, page offset, level or visitor filter is not valid. |
422 | validation_error | A parameter has the wrong type. |