GET
/
account
/
{address}
/
transfers
Get Account Transfers
curl --request GET \
  --url https://indexer.testnet.incentiv.net/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

200
application/json

List of transfers related to the account.

The response is of type object[].