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

Path Parameters

address
string
required

Account address to retrieve transfers for.

Query Parameters

offset
integer

Offset for pagination.

limit
integer

Maximum number of transfers to return.

Response

List of transfers related to the account.

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.