Account APIs
Several APIs supporting read and write use cases for wallets on different EVM compatible chains and Solana:
- get entire transaction history of the wallet
- all the swap transactions that were made on DEX’s
- Gas fee API: Total gas fee/Network fee paid by the wallet
- Net worth Token API : to query the net-worth of the wallet automatically through price feed from different exchanges
- Net worth NFT : to query the net worth of all the NFT’s through floor price available across all NFT exchanges/marketplace
- Token legacy details API: To query the token total supply of ERC20/721/115
Get list of recent transaction happened for a wallet
GET '/api/account/transactions?network={network}&walletAddress={walletAddress}'
// Example
GET '/api/account/transactions?walletAddress=0x6Fe489d80a48CAF7472cD45f4258b9FfB5208E3C&network=137'
Key | Value |
---|---|
walletAddress | Wallet address for which the transaction list is queried. |
Get transaction detailed for a given hash
GET '/api/account/transactions/{transaction_hash}?network={network}'
// Example
GET '/api/account/transaction/0x9a7d74bf44d927668c937e330273859b3cd080445d7124a030c78a46dc731bfc?network=137'
Key | Value |
---|---|
transaction_hash | Transaction hash of a given transaction |
Get total amount of native token paid as fees to facilitate all the transactions.
GET '/api/account/total-fees?network={network}&walletAddress={walletAddress}'
// Example
GET '/api/account/total-fees?network=137&walletAddress=0x6fe489d80a48caf7472cd45f4258b9ffb5208e3c'
Key | Value |
---|---|
walletAddress | Wallet address for which the fees is queried. |
Last modified 2mo ago