Base URL
Send all requests to the following base URL:GET /v1/trader/{address}/activity resolves to:
Authentication
Every request must include your API key as a Bearer token in theAuthorization header. Requests without a valid key return a 401 error. See Authentication for setup instructions and code samples.
Response Format
Every response — successful or not — uses the same JSON envelope:A
200 response with success: true and data: null is not an error — it means your request was valid but no matching record exists. For list endpoints, check whether data.items is an empty array rather than relying on the HTTP status alone.Pagination
The list endpoints support cursor-based pagination. Follow these steps to walk through all pages:- Make your first request, optionally setting
limit(default50, maximum100). - Read
data.nextCursorfrom the response. - If
nextCursoris notnull, pass its value as thecursorquery parameter on your next request. - Continue until
nextCursorisnull— that signals the final page.
nextCursor field alongside the results:
nextCursor is null: