/v1/accounts/{address}/transactions

Get account transactions

Retrieves transactions from an account. If the start version is too far in the past a 410 will be returned.

If no start version is given, it will start at 0

Parameters

  • address REQUIRED: (string<hex>) - Address of account with or without a 0x prefix

Query parameters

  • limit OPTIONAL: (integer) - Max number of transactions to retrieve

  • start OPTIONAL: (string) - Account sequence number to start list of transactions

Example

Request

curl --request GET \
  --url https://aptos-mainnet.blastapi.io/<project-id>/v1/accounts/0xc32f662cd9718f02d8a8e5628f8f642fa27cd9b5f457b406ed734901a4939e34/transactions?limit=1 \
  --header 'Content-Type: application/json'

Last updated