For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get transaction history

get

Get paginated transaction history for the authenticated user. Requires the user session token (JWT) issued by the authenticate endpoint, passed as Authorization: Bearer <token>. For the initial request, omit both cursors to retrieve the latest history; for subsequent requests, pass either nextCursor (newer) or prevCursor (older).

Path parameters
apiKeystringRequired

API key generated at https://studio.aurora.dev

Query parameters
prevCursorstringOptional

Pass the prevCursor value from a previous response to fetch older items. Omit both cursors for the initial request. Do not pass together with nextCursor.

nextCursorstringOptional

Pass the nextCursor value from a previous response to poll for newer items. Omit both cursors for the initial request. Do not pass together with prevCursor.

limitinteger · min: 1 · max: 100Optional

Maximum number of items to return per page.

Example: 20
depositAddressstringOptional

Filter by deposit address.

depositMemostringOptional

Filter by deposit memo. Only has effect when depositAddress is also provided.

searchstringOptional

Search by deposit address, recipient, sender, or tx hash.

Responses
200

Transaction history retrieved successfully

application/json

Transaction history retrieved successfully

nextCursorstringOptional

Pass it back as nextCursor to poll for newer items.

prevCursorstringOptional

Pass it back as prevCursor to fetch older items.

get/api/account/history/{apiKey}