Get inbound STX transfers

Retrieves a list of STX transfers with memos to the given principal.


GET
/extended/v1/address/{principal}/stx_inbound

Get inbound STX transfers

Retrieves a list of STX transfers with memos to the given principal. This includes regular transfers from a stx-transfer transaction type, and transfers from contract-call transactions a the send-many-memo bulk sending contract.

Query Parameters

limitLimit

Results per page

Default: 20Minimum: 0Maximum: 50

offsetOffset

Result offset

Default: 0Minimum: 0

heightinteger

Filter for transactions only at this given block height

unanchoredboolean

Include data from unanchored (i.e. unconfirmed) microblocks

Default: false

until_blockstring

Block hash or block height. Return data representing the state up until that point in time, rather than the current block. Note - Use either of the query parameters but not both at a time.

Path Parameters

principal
Required
Any properties in STX Address, Smart Contract ID

Status codeDescription
200Default Response
4XXDefault Response
/extended/v1/address/{principal}/stx_inbound

curl -X GET "https://api.hiro.so/extended/v1/address/SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP/stx_inbound?limit=20&offset=0&height=0&unanchored=false&until_block=string"

{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"sender": "string",
"amount": "string",
"memo": "string",
"block_height": 0,
"tx_id": "string",
"transfer_type": "bulk-send",
"tx_index": 0
}
]
}