Get transactions for address

Retrieves transactions for a specific address.


GET
/extended/v1/address/{address}/mempool

Transactions for address

Retrieves all transactions for a given address that are currently in mempool

Path Parameters

address
Required
string

Transactions for the address

Example: "SP197DVH8KTJGX4STM61QN0WJV8Y9QJWXV83ZGNR9"

Query Parameters

limitinteger

max number of transactions to fetch

Example: 90

offsetinteger

index of first transaction to fetch

Example: 42000

unanchoredboolean

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

Example: trueDefault: false
Status codeDescription
200List of Transactions
/extended/v1/address/{address}/mempool

Terminal
$
curl -X GET "https://api.hiro.so/extended/v1/address/SP197DVH8KTJGX4STM61QN0WJV8Y9QJWXV83ZGNR9/mempool?limit=90&offset=42000&unanchored=true"

GET request that returns transactions

{
"limit": 0,
"offset": 0,
"total": 0,
"results": [
{
"tx_id": "string",
"nonce": 0,
"fee_rate": "string",
"sender_address": "string",
"sponsor_nonce": 0,
"sponsored": true,
"sponsor_address": "string",
"post_condition_mode": "allow",
"post_conditions": [
{
"principal": {
"type_id": "principal_origin"
},
"condition_code": "sent_equal_to",
"amount": "string",
"type": "stx"
}
],
"anchor_mode": "on_chain_only",
"tx_status": "pending",
"receipt_time": 0,
"receipt_time_iso": "string",
"tx_type": "token_transfer",
"token_transfer": {
"recipient_address": "string",
"amount": "string",
"memo": "string"
}
}
]
}