Transactions

GET /portfolio-indexor/transactions

Load transactions

Headers

Name
Value

Content-Type

application/json

x-join-key

api_token

Params (Query)

Name
Type
Description

ethAddress

string (optional)

contract address

solAddress

string (optional)

contract address

Response

{
    "send": [
        {
            type: string,
            network0: string,
            network1: string,
            executionDate: string, // "2024-11-28T02:50:06Z"
            addressToFrom: string,
            tokenSymbol: string,
            value: number,
            dollarValue: string,
            transactionHash: string,
            chainName: string,
        },
    ],
    "receive": [
        {
            type: string,
            network0: string,
            network1: string,
            executionDate: string, // "2024-11-28T02:50:06Z"
            addressToFrom: string,
            tokenSymbol: string,
            value: number,
            dollarValue: string,
            transactionHash: string,
            chainName: string,
        }
    ],
    "convert": [
        {
            type: string,
            network0: string,
            network1: string,
            executionDate: string, // "2024-11-28T02:50:06Z"
            addressToFrom: string,
            tokenSymbol: string,
            value: number,
            dollarValue: string,
            transactionHash: string,
            chainName: string,
            amountOut: number,
        }
    ]
}

Last updated