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

Path Parameters:

address string required

Address of account with or without a 0x prefix

Query Parameters:

limit integer

Max number of transactions to retrieve. If not provided, defaults to default page size

start string<uint64>

Ledger version to start list of transactions. If not provided, defaults to showing the latest transactions

Response Header:

X-APTOS-BLOCK-HEIGHT integer

Current block height of the chain

X-APTOS-CHAIN-ID integer

Chain ID of the current chain

X-APTOS-EPOCH integer

Current epoch of the chain

X-APTOS-LEDGER-OLDEST-VERSION integer

Oldest non-pruned ledger version of the chain

X-APTOS-LEDGER-TIMESTAMPUSEC integer

Current timestamp of the chain

X-APTOS-LEDGER-VERSION integer

Current ledger version of the chain

X-APTOS-OLDEST-BLOCK-HEIGHT integer

Oldest non-pruned block height of the chain

Response Body:

array

Example:

// Request
curl -X GET -H 'Content-Type: application/json' https://movement.blockpi.network/rpc/v1/your_api_key/v1/accounts/0x9e5cf6e900fecbb716eb64781d40a5b1db9652caa6b61c188184b28c41687db2/transactions


// Result

Last updated