Skip to main content

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';

Query Parameters
tx_id string[] REQUIRED

Array of transaction ids

Example: 0x0a411719e3bfde95f9e227a2d7f8fac3d6c646b1e6cc186db0e2838a2c6cd9c0
event_offset integer

The number of events to skip

event_limit integer

The numbers of events to return

unanchored boolean

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

Example: true
Responses
200

Returns list of transactions with their details for corresponding requested tx_ids.

Schema OPTIONAL
object
404

Could not find any transaction by ID

get_tx_list_details
GET /extended/v1/tx/multiple
tx_id — query
event_offset — query
event_limit — query
unanchored — query
https://api.mainnet.hiro.so
curl -L 'https://api.mainnet.hiro.so/extended/v1/tx/multiple' \
-H 'Accept: application/json'