v1

latestOpenAPI 3.1.0MIT License2026-07-17107133186.6 KB
transactions

Transaction statuses

Get transaction statuses by their ID. For dozens of transactions, better use the POST method.<br>Transactions in the response are in the same order as in the request.

get/transactions/status

Query parameters

idTransactionId[] required
[
  "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p"
]

Response

successful operation

idstring
status'confirmed' | 'unconfirmed' | 'not_found'
  • not_found: transaction is not found
  • unconfirmed: transaction is in the UTX pool
  • confirmed: transaction is added to the block or microblock
heightinteger
confirmationsinteger

Number of blocks added on top of the one that contains the transaction

applicationStatus'succeeded' | 'script_execution_failed'
  • succeeded: transaction is successful
  • script_execution_failed: the dApp script or the asset script failed

See Transaction Validation for details.

Example response

[
  {
    "id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
    "height": 1610000
  }
]