Get details for transactions

Retrieves details for a list of transactions.


GET
/extended/v1/tx/multiple

Get list of details for transactions

Retrieves a list of transactions for a given list of transaction IDs

If using TypeScript, import typings for this response from our types package:

import type { Transaction } from '@stacks/stacks-blockchain-api-types';

Status codeDescription
200Returns list of transactions with their details for corresponding requested tx_ids.
404Could not find any transaction by ID
/extended/v1/tx/multiple
Terminal
$
curl -X GET "https://api.hiro.so/extended/v1/tx/multiple"

{
"property1": {
"found": true,
"result": {
"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"
}
}
},
"property2": {
"found": true,
"result": {
"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"
}
}
}
}