1. Wallet Endpoints
  2. SOL Transactions
GET

/v1/wallets/tracking/solana/transactions

x-invezo-api-key*
curl --request GET \
     --url https://api.invezo.com/v1/wallets/tracking/solana/transactions \
     --header 'x-invezo-api-key: AUTH_VALUE'

Query Parameters

addressRequired
string

wallet address (example: 9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM)

minOptional
int or string

start of the aggregate time window as a timestamp (example: 1652486400 or ‘2022-05-13T18:00:00’)

maxOptional
int or string

end of the aggregate time window as a timestamp (example: 1675191600 or ‘2023-01-31T12:00:00’)

intervalOptional
string

size of the time window (valid intervals: 10m, 1h, 1d, 1w, 1mo)

tokenOptional
string

asset contract address (example: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v)

sortOptional
string

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

limitOptional
int

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
        },
        ...
    ]
}