Skip to main content

Transaction Endpoints

Get a transaction

Operation Identity:
  • Operation ID: getTransaction
  • GET /v1/{chainName}/transaction_v2/{txHash}/
  • SDK: TransactionService.getTransaction()
Role: primary | Credit Cost: 0.1 per call | API Type: REST Chains: All supported chains

Path Parameters

ParameterTypeRequiredDescription
chainNamestringYesThe chain name eg: eth-mainnet.
txHashstringYesThe transaction hash.

Query Parameters

ParameterTypeRequiredDefaultDescription
quote-currencystringNo-The currency to convert. Supports USD, CAD, EUR, SGD, INR, JPY, VND, CNY, KRW, RUB, TRY, NGN, ARS, AUD, CHF, and GBP.
no-logsbooleanNo-Omit log events.
with-internalbooleanNo-Whether to include internal transfers/transactions.
with-statebooleanNo-Whether to include all transaction state changes with before and after values.
with-input-databooleanNo-Whether to include the transaction’s input data such as the Method ID.

Response Fields

FieldTypeDescription
updated_atstringThe timestamp when the response was generated. Useful to show data staleness to users.
chain_idintegerThe requested chain ID eg: 1.
chain_namestringThe requested chain name eg: eth-mainnet.
chain_tip_heightintegerThe latest block height of the blockchain at the time this response was provided.
chain_tip_signed_atstringThe timestamp of the latest signed block at the time this response was provided.
itemsarrayList of response items.

Item Fields

FieldTypeDescription
block_signed_atstringThe block signed timestamp in UTC.
block_heightintegerThe height of the block.
block_hashstringThe hash of the block. Use it to remove transactions from re-org-ed blocks.
tx_hashstringThe requested transaction hash.
tx_offsetintegerThe offset is the position of the tx in the block.
successfulbooleanIndicates whether a transaction failed or succeeded.
from_addressstringThe sender’s wallet address.
miner_addressstringThe address of the miner.
to_addressstringThe receiver’s wallet address.
valuestringb;The value attached to this tx.
value_quotenumberThe value attached in quote-currency to this tx.
pretty_value_quotestringA prettier version of the quote for rendering purposes.
gas_metadataobjectThe requested chain native gas token metadata.
gas_offeredinteger
gas_spentintegerThe gas spent for this tx.
gas_priceintegerThe gas price at the time of this tx.
fees_paidstringb;The total transaction fees (gas_price * gas_spent) paid for this tx, denoted in wei.
gas_quotenumberThe gas spent in quote-currency denomination.
pretty_gas_quotestringA prettier version of the quote for rendering purposes.
gas_quote_ratenumberThe native gas exchange rate for the requested quote-currency.
explorersarray<object>The explorer links for this transaction.
log_eventsarray<object>The log events.
internal_transfersarray<object>List of internal transfers/transactions associated with the wallet address.
state_changesarray<object>List of state changes with before and after values and balances for involved contract and wallet addresses.
input_dataobjectObject with a transaction’s input data such as the Method ID.
Credit Cost: 0.1 per call Processing: Realtime
Note: Base cost is 0.1 credits (e.g. requests that return with status 200 but no items).
Calls with no-logs cost 0.05 credits/item. The following tracing features each cost 0.05 credits where available on Foundational Chains:
  • with-internal - includes internal transfers/transactions.
  • with-state - includes all transaction state changes with before and after values.
  • with-input-data - includes the transaction’s input data such as the Method ID.
Currently, tracing features are supported on the following chains:
  • eth-mainnet
Comparing GoldRush’s Transactions API to RPC Providers How to Get Transaction History for an Address on Ethereum

Get all transactions in a block by page (v3)

Operation Identity:
  • Operation ID: getTransactionsForBlockByPage
  • GET /v1/{chainName}/block/{blockHeight}/transactions_v3/page/{page}/
Role: specialized | Credit Cost: 0.1 per item | API Type: REST Chains: All supported chains

Path Parameters

ParameterTypeRequiredDescription
chainNamestringYesThe chain name eg: eth-mainnet.
blockHeightintegerYesThe requested block height. Also accepts latest to get latest block.
pageintegerYesThe requested 0-indexed page number.

Query Parameters

ParameterTypeRequiredDefaultDescription
quote-currencystringNo-The currency to convert. Supports USD, CAD, EUR, SGD, INR, JPY, VND, CNY, KRW, RUB, TRY, NGN, ARS, AUD, CHF, and GBP.
no-logsbooleanNo-Omit log events.

Response Fields

FieldTypeDescription
updated_atstringThe timestamp when the response was generated. Useful to show data staleness to users.
chain_idintegerThe requested chain ID eg: 1.
chain_namestringThe requested chain name eg: eth-mainnet.
chain_tip_heightintegerThe latest block height of the blockchain at the time this response was provided.
chain_tip_signed_atstringThe timestamp of the latest signed block at the time this response was provided.
linksobject
itemsarrayList of response items.
FieldTypeDescription
prevstringURL link to the next page.
nextstringURL link to the previous page.

Item Fields

FieldTypeDescription
block_signed_atstringThe block signed timestamp in UTC.
block_heightintegerThe height of the block.
block_hashstringThe hash of the block. Use it to remove transactions from re-org-ed blocks.
tx_hashstringThe requested transaction hash.
tx_offsetintegerThe offset is the position of the tx in the block.
successfulbooleanIndicates whether a transaction failed or succeeded.
from_addressstringThe sender’s wallet address.
miner_addressstringThe address of the miner.
to_addressstringThe receiver’s wallet address.
valuestringb;The value attached to this tx.
value_quotenumberThe value attached in quote-currency to this tx.
pretty_value_quotestringA prettier version of the quote for rendering purposes.
gas_metadataobjectThe requested chain native gas token metadata.
gas_offeredinteger
gas_spentintegerThe gas spent for this tx.
gas_priceintegerThe gas price at the time of this tx.
fees_paidstringb;The total transaction fees (gas_price * gas_spent) paid for this tx, denoted in wei.
gas_quotenumberThe gas spent in quote-currency denomination.
pretty_gas_quotestringA prettier version of the quote for rendering purposes.
gas_quote_ratenumberThe native gas exchange rate for the requested quote-currency.
explorersarray<object>The explorer links for this transaction.
log_eventsarray<object>The log events.
Credit Cost: 0.1 per item Processing: Realtime

Get all transactions in a block (v3)

Operation Identity:
  • Operation ID: getTransactionsForBlockHash
  • GET /v1/{chainName}/block_hash/{blockHash}/transactions_v3/
Role: specialized | Credit Cost: 0.1 per item | API Type: REST Chains: All supported chains

Path Parameters

ParameterTypeRequiredDescription
chainNamestringYesThe chain name eg: eth-mainnet.
blockHashstringYesThe requested block hash.

Query Parameters

ParameterTypeRequiredDefaultDescription
quote-currencystringNo-The currency to convert. Supports USD, CAD, EUR, SGD, INR, JPY, VND, CNY, KRW, RUB, TRY, NGN, ARS, AUD, CHF, and GBP.
no-logsbooleanNo-Omit log events.

Response Fields

FieldTypeDescription
updated_atstringThe timestamp when the response was generated. Useful to show data staleness to users.
chain_idintegerThe requested chain ID eg: 1.
chain_namestringThe requested chain name eg: eth-mainnet.
chain_tip_heightintegerThe latest block height of the blockchain at the time this response was provided.
chain_tip_signed_atstringThe timestamp of the latest signed block at the time this response was provided.
itemsarrayList of response items.

Item Fields

FieldTypeDescription
block_signed_atstringThe block signed timestamp in UTC.
block_heightintegerThe height of the block.
block_hashstringThe hash of the block. Use it to remove transactions from re-org-ed blocks.
tx_hashstringThe requested transaction hash.
tx_offsetintegerThe offset is the position of the tx in the block.
successfulbooleanIndicates whether a transaction failed or succeeded.
from_addressstringThe sender’s wallet address.
miner_addressstringThe address of the miner.
to_addressstringThe receiver’s wallet address.
valuestringb;The value attached to this tx.
value_quotenumberThe value attached in quote-currency to this tx.
pretty_value_quotestringA prettier version of the quote for rendering purposes.
gas_metadataobjectThe requested chain native gas token metadata.
gas_offeredinteger
gas_spentintegerThe gas spent for this tx.
gas_priceintegerThe gas price at the time of this tx.
fees_paidstringb;The total transaction fees (gas_price * gas_spent) paid for this tx, denoted in wei.
gas_quotenumberThe gas spent in quote-currency denomination.
pretty_gas_quotestringA prettier version of the quote for rendering purposes.
gas_quote_ratenumberThe native gas exchange rate for the requested quote-currency.
explorersarray<object>The explorer links for this transaction.
log_eventsarray<object>The log events.
Credit Cost: 0.1 per item Processing: Realtime Introducing Transactions V3 APIs Comparing GoldRush’s Transactions API to RPC Providers How to Track Wallets or Transactions with the GoldRush API How to Get the Number of Transactions in a Block How to Get All Historical Transactions in a Block

Get earliest transactions for address (v3)

Operation Identity:
  • Operation ID: getEarliestTimeBucketTransactionsForAddress
  • GET /v1/{chainName}/bulk/transactions/{walletAddress}/
Role: specialized | Credit Cost: 0.1 per item | API Type: REST Chains: All supported chains

Path Parameters

ParameterTypeRequiredDescription
chainNamestringYesThe chain name eg: eth-mainnet.
walletAddressstringYesThe requested address. Passing in an ENS, RNS, Lens Handle, or an Unstoppable Domain resolves automatically.

Query Parameters

ParameterTypeRequiredDefaultDescription
quote-currencystringNo-The currency to convert. Supports USD, CAD, EUR, SGD, INR, JPY, VND, CNY, KRW, RUB, TRY, NGN, ARS, AUD, CHF, and GBP.
no-logsbooleanNo-Omit log events.

Response Fields

FieldTypeDescription
addressstringThe requested address.
updated_atstringThe timestamp when the response was generated. Useful to show data staleness to users.
quote_currencystringThe requested quote currency eg: USD.
chain_idintegerThe requested chain ID eg: 1.
chain_namestringThe requested chain name eg: eth-mainnet.
chain_tip_heightintegerThe latest block height of the blockchain at the time this response was provided.
chain_tip_signed_atstringThe timestamp of the latest signed block at the time this response was provided.
completeboolean
current_bucketintegerThe current bucket of the response.
linksobject
itemsarrayList of response items.
FieldTypeDescription
prevstringURL link to the next page.
nextstringURL link to the previous page.

Item Fields

FieldTypeDescription
block_signed_atstringThe block signed timestamp in UTC.
block_heightintegerThe height of the block.
block_hashstringThe hash of the block. Use it to remove transactions from re-org-ed blocks.
tx_hashstringThe requested transaction hash.
tx_offsetintegerThe offset is the position of the tx in the block.
successfulbooleanIndicates whether a transaction failed or succeeded.
from_addressstringThe sender’s wallet address.
miner_addressstringThe address of the miner.
to_addressstringThe receiver’s wallet address.
valuestringb;The value attached to this tx.
value_quotenumberThe value attached in quote-currency to this tx.
pretty_value_quotestringA prettier version of the quote for rendering purposes.
gas_metadataobjectThe requested chain native gas token metadata.
gas_offeredinteger
gas_spentintegerThe gas spent for this tx.
gas_priceintegerThe gas price at the time of this tx.
fees_paidstringb;The total transaction fees (gas_price * gas_spent) paid for this tx, denoted in wei.
gas_quotenumberThe gas spent in quote-currency denomination.
pretty_gas_quotestringA prettier version of the quote for rendering purposes.
gas_quote_ratenumberThe native gas exchange rate for the requested quote-currency.
explorersarray<object>The explorer links for this transaction.
log_eventsarray<object>The log events.
Credit Cost: 0.1 per item Processing: Realtime
Note: Returns the same results as the first timebucket for an address in the Get recent transactions endpoint.
Requests that return status 200 and no data cost 0.1 credits. Enabling no-logs reduces request cost to 0.05 per item. Introducing Transactions V3 APIs Comparing GoldRush’s Transactions API to RPC Providers How to Get Transaction History for an Address on Ethereum

Get paginated transactions for address (v3)

Operation Identity:
  • Operation ID: getTransactionsForAddressV3
  • GET /v1/{chainName}/address/{walletAddress}/transactions_v3/page/{page}/
Role: primary | Credit Cost: 0.1 per item | API Type: REST Chains: All supported chains

Path Parameters

ParameterTypeRequiredDescription
chainNamestringYesThe chain name eg: eth-mainnet.
walletAddressstringYesThe requested address. Passing in an ENS, RNS, Lens Handle, or an Unstoppable Domain resolves automatically.
pageintegerYesThe requested page, 0-indexed.

Query Parameters

ParameterTypeRequiredDefaultDescription
quote-currencystringNo-The currency to convert. Supports USD, CAD, EUR, SGD, INR, JPY, VND, CNY, KRW, RUB, TRY, NGN, ARS, AUD, CHF, and GBP.
no-logsbooleanNo-Omit log events.
block-signed-at-ascbooleanNo-Sort the transactions in ascending chronological order. By default, it’s set to false and returns transactions in descending chronological order.

Response Fields

FieldTypeDescription
addressstringThe requested address.
updated_atstringThe timestamp when the response was generated. Useful to show data staleness to users.
quote_currencystringThe requested quote currency eg: USD.
chain_idintegerThe requested chain ID eg: 1.
chain_namestringThe requested chain name eg: eth-mainnet.
chain_tip_heightintegerThe latest block height of the blockchain at the time this response was provided.
chain_tip_signed_atstringThe timestamp of the latest signed block at the time this response was provided.
current_pageintegerThe current page of the response.
linksobject
itemsarrayList of response items.
FieldTypeDescription
prevstringURL link to the next page.
nextstringURL link to the previous page.

Item Fields

FieldTypeDescription
block_signed_atstringThe block signed timestamp in UTC.
block_heightintegerThe height of the block.
block_hashstringThe hash of the block. Use it to remove transactions from re-org-ed blocks.
tx_hashstringThe requested transaction hash.
tx_offsetintegerThe offset is the position of the tx in the block.
successfulbooleanIndicates whether a transaction failed or succeeded.
from_addressstringThe sender’s wallet address.
miner_addressstringThe address of the miner.
to_addressstringThe receiver’s wallet address.
valuestringb;The value attached to this tx.
value_quotenumberThe value attached in quote-currency to this tx.
pretty_value_quotestringA prettier version of the quote for rendering purposes.
gas_metadataobjectThe requested chain native gas token metadata.
gas_offeredinteger
gas_spentintegerThe gas spent for this tx.
gas_priceintegerThe gas price at the time of this tx.
fees_paidstringb;The total transaction fees (gas_price * gas_spent) paid for this tx, denoted in wei.
gas_quotenumberThe gas spent in quote-currency denomination.
pretty_gas_quotestringA prettier version of the quote for rendering purposes.
gas_quote_ratenumberThe native gas exchange rate for the requested quote-currency.
explorersarray<object>The explorer links for this transaction.
log_eventsarray<object>The log events.
Credit Cost: 0.1 per item Processing: Realtime
Note: This endpoint returns paginated transactions, starting with the earliest transactions on page 0. For the most recent transactions, refer to the Get recent transactions for address (v3) endpoint.
Requests that return status 200 and no data cost 0.1 credits. Enabling no-logs reduces request cost to 0.05 per item. Introducing Transactions V3 APIs Comparing GoldRush’s Transactions API to RPC Providers How to Get Transaction History for an Address on Ethereum

Get recent transactions for address (v3)

Operation Identity:
  • Operation ID: getRecentTransactionsForAddress
  • GET /v1/{chainName}/address/{walletAddress}/transactions_v3/
Role: primary | Credit Cost: 0.1 per item | API Type: REST Chains: All supported chains

Path Parameters

ParameterTypeRequiredDescription
chainNamestringYesThe chain name eg: eth-mainnet.
walletAddressstringYesThe requested address. Passing in an ENS, RNS, Lens Handle, or an Unstoppable Domain resolves automatically.

Query Parameters

ParameterTypeRequiredDefaultDescription
quote-currencystringNo-The currency to convert. Supports USD, CAD, EUR, SGD, INR, JPY, VND, CNY, KRW, RUB, TRY, NGN, ARS, AUD, CHF, and GBP.
no-logsbooleanNo-Omit log events.
block-signed-at-ascbooleanNo-Sort the transactions in ascending chronological order. By default, it’s set to false and returns transactions in descending chronological order.

Response Fields

FieldTypeDescription
addressstringThe requested address.
updated_atstringThe timestamp when the response was generated. Useful to show data staleness to users.
quote_currencystringThe requested quote currency eg: USD.
chain_idintegerThe requested chain ID eg: 1.
chain_namestringThe requested chain name eg: eth-mainnet.
chain_tip_heightintegerThe latest block height of the blockchain at the time this response was provided.
chain_tip_signed_atstringThe timestamp of the latest signed block at the time this response was provided.
current_pageintegerThe current page of the response.
linksobject
itemsarrayList of response items.
FieldTypeDescription
prevstringURL link to the next page.
nextstringURL link to the previous page.

Item Fields

FieldTypeDescription
block_signed_atstringThe block signed timestamp in UTC.
block_heightintegerThe height of the block.
block_hashstringThe hash of the block. Use it to remove transactions from re-org-ed blocks.
tx_hashstringThe requested transaction hash.
tx_offsetintegerThe offset is the position of the tx in the block.
successfulbooleanIndicates whether a transaction failed or succeeded.
from_addressstringThe sender’s wallet address.
miner_addressstringThe address of the miner.
to_addressstringThe receiver’s wallet address.
valuestringb;The value attached to this tx.
value_quotenumberThe value attached in quote-currency to this tx.
pretty_value_quotestringA prettier version of the quote for rendering purposes.
gas_metadataobjectThe requested chain native gas token metadata.
gas_offeredinteger
gas_spentintegerThe gas spent for this tx.
gas_priceintegerThe gas price at the time of this tx.
fees_paidstringb;The total transaction fees (gas_price * gas_spent) paid for this tx, denoted in wei.
gas_quotenumberThe gas spent in quote-currency denomination.
pretty_gas_quotestringA prettier version of the quote for rendering purposes.
gas_quote_ratenumberThe native gas exchange rate for the requested quote-currency.
explorersarray<object>The explorer links for this transaction.
log_eventsarray<object>The log events.
Credit Cost: 0.1 per item Processing: Realtime
Note: Requests that return status 200 and no data cost 0.1 credits.
Enabling no-logs reduces request cost to 0.05 per item. Introducing Transactions V3 APIs Comparing GoldRush’s Transactions API to RPC Providers

Get bulk time bucket transactions for address (v3)

Operation Identity:
  • Operation ID: getTimeBucketTransactionsForAddress
  • GET /v1/{chainName}/bulk/transactions/{walletAddress}/{timeBucket}/
  • SDK: TransactionService.getTimeBucketTransactionsForAddress()
Role: specialized | Credit Cost: 0.1 per item | API Type: REST Chains: All supported chains

Path Parameters

ParameterTypeRequiredDescription
chainNamestringYesThe chain name eg: eth-mainnet.
walletAddressstringYesThe requested address. Passing in an ENS, RNS, Lens Handle, or an Unstoppable Domain resolves automatically.
timeBucketintegerYesThe 0-indexed 15-minute time bucket. E.g. 27 Feb 2023 05:23 GMT = 1677475383 (Unix time). 1677475383/900=1863861 timeBucket.

Query Parameters

ParameterTypeRequiredDefaultDescription
quote-currencystringNo-The currency to convert. Supports USD, CAD, EUR, SGD, INR, JPY, VND, CNY, KRW, RUB, TRY, NGN, ARS, AUD, CHF, and GBP.
no-logsbooleanNo-Omit log events.

Response Fields

FieldTypeDescription
addressstringThe requested address.
updated_atstringThe timestamp when the response was generated. Useful to show data staleness to users.
quote_currencystringThe requested quote currency eg: USD.
chain_idintegerThe requested chain ID eg: 1.
chain_namestringThe requested chain name eg: eth-mainnet.
chain_tip_heightintegerThe latest block height of the blockchain at the time this response was provided.
chain_tip_signed_atstringThe timestamp of the latest signed block at the time this response was provided.
completeboolean
current_bucketintegerThe current bucket of the response.
linksobject
itemsarrayList of response items.
FieldTypeDescription
prevstringURL link to the next page.
nextstringURL link to the previous page.

Item Fields

FieldTypeDescription
block_signed_atstringThe block signed timestamp in UTC.
block_heightintegerThe height of the block.
block_hashstringThe hash of the block. Use it to remove transactions from re-org-ed blocks.
tx_hashstringThe requested transaction hash.
tx_offsetintegerThe offset is the position of the tx in the block.
successfulbooleanIndicates whether a transaction failed or succeeded.
from_addressstringThe sender’s wallet address.
miner_addressstringThe address of the miner.
to_addressstringThe receiver’s wallet address.
valuestringb;The value attached to this tx.
value_quotenumberThe value attached in quote-currency to this tx.
pretty_value_quotestringA prettier version of the quote for rendering purposes.
gas_metadataobjectThe requested chain native gas token metadata.
gas_offeredinteger
gas_spentintegerThe gas spent for this tx.
gas_priceintegerThe gas price at the time of this tx.
fees_paidstringb;The total transaction fees (gas_price * gas_spent) paid for this tx, denoted in wei.
gas_quotenumberThe gas spent in quote-currency denomination.
pretty_gas_quotestringA prettier version of the quote for rendering purposes.
gas_quote_ratenumberThe native gas exchange rate for the requested quote-currency.
explorersarray<object>The explorer links for this transaction.
log_eventsarray<object>The log events.
Credit Cost: 0.1 per item Processing: Realtime
Note: Requests that return status 200 and no data cost 0.1 credits.
Enabling no-logs reduces request cost to 0.05 per item. Scaling Transactions API with Time Buckets Introducing Transactions V3 APIs Comparing GoldRush’s Transactions API to RPC Providers

Get transaction summary for address

Operation Identity:
  • Operation ID: getTransactionSummary
  • GET /v1/{chainName}/address/{walletAddress}/transactions_summary/
  • SDK: TransactionService.getTransactionSummary()
Role: primary | Credit Cost: 1 per call | API Type: REST Chains: All supported chains

Path Parameters

ParameterTypeRequiredDescription
chainNamestringYesThe chain name eg: eth-mainnet.
walletAddressstringYesThe requested address. Passing in an ENS, RNS, Lens Handle, or an Unstoppable Domain resolves automatically.

Query Parameters

ParameterTypeRequiredDefaultDescription
quote-currencystringNo-The currency to convert. Supports USD, CAD, EUR, SGD, INR, JPY, VND, CNY, KRW, RUB, TRY, NGN, ARS, AUD, CHF, and GBP.
with-gasbooleanNo-Include gas summary details. Response times may be impacted for wallets with large number of transactions.
with-transfer-countbooleanNo-Represents the total count of ERC-20 token movement events, including Transfer, Deposit and Withdraw. Response times may be impacted for wallets with large number of transactions.

Response Fields

FieldTypeDescription
updated_atstringThe timestamp when the response was generated. Useful to show data staleness to users.
addressstringThe requested address.
chain_idintegerThe requested chain ID eg: 1.
chain_namestringThe requested chain name eg: eth-mainnet.
itemsarrayList of response items.

Item Fields

FieldTypeDescription
total_countintegerThe total number of transactions.
transfer_countintegerRepresents the total count of ERC-20 token movement events, including Transfer, Deposit and Withdraw.
earliest_transactionobjectThe earliest transaction detected.
latest_transactionobjectThe latest transaction detected.
gas_summaryobjectThe gas summary for the transactions.
Credit Cost: 1 per call Processing: Batch
Note: - Base cost is 1 credit.
  • Using with-gas is an additional 1 credit.
  • Using with-transfer-count is an additional 3 credits.
Building Web3 Wallets (Part 7) - Multi-Chain Wallet Activity Summary Comparing GoldRush’s Transactions API to RPC Providers How to Get Transaction History for an Address on Ethereum

Get Bitcoin transactions for non-HD address

Operation Identity:
  • Operation ID: getTransactionsForBtcAddress
  • GET /v1/cq/covalent/app/bitcoin/transactions/
  • SDK: BitcoinService.getTransactionsForBtcAddress()
Role: primary | Credit Cost: 0.1 per item | API Type: REST Chains: btc-mainnet

Query Parameters

ParameterTypeRequiredDefaultDescription
addressstringNo-The bitcoin address to query.
page-sizeintegerNo100Number of items per page. Omitting this parameter defaults to 100.
page-numberintegerNo-0-indexed page number to begin pagination.

Response Fields

FieldTypeDescription
updated_atstringThe timestamp when the response was generated. Useful to show data staleness to users.
itemsarrayList of response items.
paginationobjectPagination metadata.

Item Fields

FieldTypeDescription
chain_idintegerThe requested chain ID eg: 20090103.
chain_namestringThe requested chain name eg: btc-mainnet.
contract_decimalsintegerUse contract decimals to format the token balance for display purposes - divide the balance by 10^{contract_decimals}.
block_signed_atstringThe block signed timestamp in UTC.
block_heightintegerThe height of the block.
block_hashstringThe hash of the block.
tx_hashstringThe requested transaction hash.
tx_idxintegerThe position index of the tx in the block.
typestringEither ‘input’ as the sender or ‘output’ as the receiver of btc.
addressstringThe wallet address.
valuestringb;The value attached to this tx in satoshi.
quotenumberThe value attached to this tx in USD.
quote_ratenumberThe value token exchange rate in USD.
fees_paidstringb;The total transaction fees denoted in satoshi.
gas_quotenumberThe gas spent in USD.
gas_quote_ratenumberThe native gas token exchange rate in USD.
coinbasebooleanIndicates if this is a coinbase tx where btc is rewarded to a miner for validating the block.
locktimeintegerThe earliest Unix timestamp or block height at which the tx is valid and can be included. Is 0 if no restriction.
weightintegerA measure that reflects impact on the block size limit. Used to determine fees.

Pagination Fields

FieldTypeDescription
has_morebooleanTrue if there is another page.
page_numberintegerThe requested page number.
page_sizeintegerThe requested number of items on the current page.
total_countintegerThe total number of items across all pages for this request.
Credit Cost: 0.1 per item Processing: Realtime
Note: Only supports non-HD bitcoin addresses.