v1

latestOpenAPI 3.1.0MIT License2026-07-17107133186.6 KB
transactions

Transaction status

Get transaction status by ID

get/transactions/status/{id}

Path parameters

idstring required
Example:DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p

Transaction ID base58 encoded

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
}