- Intro
- History
- State
- Tokens
- Submit new transaction
Get transaction status
POST
https://api.trait.tech/tx/status
Submit new transaction
Request
Body Params application/json
Request params for the endpoint `/tx/status`.
tx_hash
string
Tx Hash
>= 66 characters<= 66 characters
Match pattern:
^0x[0-9abcdefABCDEF]{64}$
Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.trait.tech/tx/status' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
Response schema for the endpoint `/tx/status`.
metadata
object (ResponseMetadata)
required
request_context
object (ResponseBlockId)
required
blockchain_head
object (ResponseBlockId)
required
data
object (TxStatusInfo)
required
status_code
enum<string>
required
Allowed values:
IN_TRANSACTION_POOLIN_BLOCKFINALISEDUNKNOWN
status_text
string
Status Text
Example
{
"metadata": {
"request_context": {
"block_hash": "0xab8006019066f080402ab43da043127b930ef0ffb3349a333222d67c0f542338",
"block_index": 29702,
"block_timestamp": 1727581488000
},
"blockchain_head": {
"block_hash": "0xab8006019066f080402ab43da043127b930ef0ffb3349a333222d67c0f542338",
"block_index": 29702,
"block_timestamp": 1727581488000
}
},
"data": {
"status_code": "FINALISED",
"status_text": "Transaction included into the blockchain"
}
}
🟠422Parameter Error
Modified at 2024-11-21 18:59:09