- Wallet Endpoints
- SOL Transactions
Wallet Endpoints
SOL Transactions
Get all transactions for a wallet on Solana.
/v1/wallets/tracking/solana/transactions
curl --request GET \
--url https://api.invezo.com/v1/wallets/tracking/solana/transactions \
--header 'x-invezo-api-key: AUTH_VALUE'
Query Parameters
wallet address (example: 9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM)
start of the aggregate time window as a timestamp (example: 1652486400 or ‘2022-05-13T18:00:00’)
end of the aggregate time window as a timestamp (example: 1675191600 or ‘2023-01-31T12:00:00’)
size of the time window (valid intervals: 10m, 1h, 1d, 1w, 1mo)
asset contract address (example: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v)
sort the results by timestamp. asc will return results in ascending order (oldest to newest), desc will return results in descending order (newest to oldest). default value is desc
limit the number of results returned, default is 5000 and max is 50000
{
"status": "OK",
"request_id": "",
"result_count": 5000,
"data": [
{
"time": 1675204564,
"net_quantity": -0.002990839999999828,
"sent": 0.002990839999999828,
"received": 0.0,
"signature": "5QKipFdGGEkpJEjNZGZgYJVELrcVqkpFVBaFRXdWJeWYPbvXN3QAcwTxBdEgaG9ksaryH1LM3CYwbq7r5gMydhmM",
"from": "ESeAFDVft5p7R7i1n7u75r9Bp5ESRmHwuqxE6Hz7NDuH",
"to": null,
"token_address": "SOL",
"price": 23.7,
"net_amount": -0.07088290799999593
},
{
"time": 1675204119,
"net_quantity": -0.001,
"sent": 0.001,
"received": 0.0,
"signature": "3NYiibUbdHxQjxcnHz9JdYhJ5F2j9SLgCB9TrioqSx3qV2bJPwd8ohRDo3RTZxmMo9fPa9FNnX3sEWoDXC9hybrX",
"from": "ESeAFDVft5p7R7i1n7u75r9Bp5ESRmHwuqxE6Hz7NDuH",
"to": "cAhiiJM1nrc3akoLoTECJPyqJNFWFkjzxYnVUok8dwu",
"token_address": "SOL",
"price": 23.77,
"net_amount": -0.02377
},
...
]
}
curl --request GET \
--url https://api.invezo.com/v1/wallets/tracking/solana/transactions \
--header 'x-invezo-api-key: AUTH_VALUE'
{
"status": "OK",
"request_id": "",
"result_count": 5000,
"data": [
{
"time": 1675204564,
"net_quantity": -0.002990839999999828,
"sent": 0.002990839999999828,
"received": 0.0,
"signature": "5QKipFdGGEkpJEjNZGZgYJVELrcVqkpFVBaFRXdWJeWYPbvXN3QAcwTxBdEgaG9ksaryH1LM3CYwbq7r5gMydhmM",
"from": "ESeAFDVft5p7R7i1n7u75r9Bp5ESRmHwuqxE6Hz7NDuH",
"to": null,
"token_address": "SOL",
"price": 23.7,
"net_amount": -0.07088290799999593
},
{
"time": 1675204119,
"net_quantity": -0.001,
"sent": 0.001,
"received": 0.0,
"signature": "3NYiibUbdHxQjxcnHz9JdYhJ5F2j9SLgCB9TrioqSx3qV2bJPwd8ohRDo3RTZxmMo9fPa9FNnX3sEWoDXC9hybrX",
"from": "ESeAFDVft5p7R7i1n7u75r9Bp5ESRmHwuqxE6Hz7NDuH",
"to": "cAhiiJM1nrc3akoLoTECJPyqJNFWFkjzxYnVUok8dwu",
"token_address": "SOL",
"price": 23.77,
"net_amount": -0.02377
},
...
]
}