Skip to main content
GET
/
transactions
/
{hash}
/
transfers
Get Transfers for a Transaction
curl --request GET \
  --url https://indexer.mainnet.incentiv.io/api/transactions/{hash}/transfers
[
  {
    "from": "<string>",
    "to": "<string>",
    "value": "<string>",
    "token": "<string>",
    "transactionHash": "<string>",
    "logIndex": 123
  }
]

Path Parameters

hash
string
required

Hash of the transaction to retrieve transfers for.

Response

List of transfer events associated with the transaction.

from
string
required

Address from which the asset was transferred.

to
string
required

Address to which the asset was transferred.

value
string
required

Amount of asset transferred.

token
string
required

Address or identifier of the token transferred.

transactionHash
string
required

Hash of the transaction that included this transfer.

logIndex
integer
required

Index of the log entry within the transaction receipt.