GET
/
transactions
/
{hash}
/
transfers
Get Transfers for a Transaction
curl --request GET \
  --url https://indexer.testnet.incentiv.net/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

200
application/json

List of transfer events associated with the transaction.

The response is of type object[].