Retrieve transactions
Retrieves wallet transactions for the provided wallet address. The address may be any supported MPC address. Authentication with an API key is required.
Path parameters
The address to retrieve transaction information. Supported addresses include EVM, Solana and Bitcoin.
Query parameters
Comma separated list of ticker symbols to query transaction data. For example an EVM address may be provided, which may specify multiple chains. The symbols=MATIC would indicate only Polygon data is requested. Omitting the symbols parameter will return data for all blockchains associated with the address.
The paging cursor used in combination with the limit parameter
Include a timestamp to indicate that caching should be avoided when rendering the response
Headers
The JWT access token that authorizes the request
Response
Transaction data
Example response
[
{
"data": [
{
"value": 10,
"gas": 1,
"method": "Transfer",
"link": "https://path/to/scanner",
"success": true,
"type": "native",
"imageUrl": "https://path/to/image",
"symbol": "ETH",
"description": "Transfer of 10 ETH to address 0x123",
"from": {
"address": "address1",
"label": "label1",
"link": "https://path/to/scanner"
},
"to": {
"address": "address1",
"label": "label1",
"link": "https://path/to/scanner"
}
}
]
}
]