πTransactions
Query the transactions sent and received by address
πͺ Spell Index
Get Incoming Transactions
Query Parameters
Name
Type
Description
Headers
Name
Type
Description
requests.get("https://wardanalyticsapi.com/transactions/get_incoming_transactions",
headers = {
"api": "YOUR_API_KEY"
},
params = {
"address": "115GnsdVzGYDGQMeTeMxWUJZySfJ4pgiPT"
}){
"total_page_count": 3, # How many pages will need to be scrolled through
"transactions": [ # List of transactions
{
"blockNumber": 18793495, # Block number of the transaction
"timestamp": 1702667255, # Timestamp of the transaction
"currency": "ETH", # Currency of the transaction
"hash": "0xc8ad24f62c5a65dc4d83f7178b1c26fa1b6ed4a3341681d9c4e1520c7ed11503", # Hash of the transaction
"inputs": [{"address": "0xb40969f60bfa246a09593099dace2ddd543254a3", "usdValue": 754, "value": 333000000000000000}], # List of inputs (only one for EVMs)
"outputs": [{"address": "0x3fc91a3afd70395cd496c647d5a6cc9d4b2b7fad", "usdValue": 754, "value": 333000000000000000}], # List of outputs (only one for EVMs)
"usdValue": 754, # USD value of the transaction
"value": 333000000000000000}, # Native value of the transaction
...
]
} Get Outgoing Transactions
Query Parameters
Name
Type
Description
Headers
Name
Type
Description
Primary Fields
Key
Explanation
Last updated