Skip to main content
GET
/
transaction
/
{txhash}
/
status
Get transaction status
curl --request GET \
  --url https://api.example.com/transaction/{txhash}/status
const options = {method: 'GET'};

fetch('https://api.example.com/transaction/{txhash}/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.example.com/transaction/{txhash}/status"

response = requests.get(url)

print(response.text)
false
{}

Path Parameters

txhash
string
required

Transaction hash (hex)

Query Parameters

sender
string

Bech32 sender address (optional, speeds up lookup)

withResults
boolean

Include smart contract results

Response

Successful response

The response is of type object.