← Aptos overview
Aptos · aptos
get_account_transactions
Aptos API: get_account_transactions
Aptos fullnode API. Reference: aptos.dev
cURL
Endpoint: https://apt-mainnet.eu1.azxa.io/<api-key> — replace <api-key> with your API key from the Azxa app .
Terminal
curl -X POST https://apt-mainnet.eu1.azxa.io/<api-key> \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"get_account_transactions","params":[]}'Example request
JSON-RPC
{
"jsonrpc": "2.0",
"id": 1,
"method": "get_account_transactions",
"params": []
}Result
See node response
Example response
{
"jsonrpc": "2.0",
"id": 1,
"result": null
}Schema
{
"type": "unknown"
}