Last updated 11 months ago
Was this helpful?
Simple endpoint to check tracker health
/tracker/health
curl -L \ --url 'https://dev-api.thorswap.net/tracker/health'
No body
Get a chain-by-chain breakdown of a transaction's overall progress
/tracker/v2/txn
a tracker request object
curl -L \ --request POST \ --url 'https://dev-api.thorswap.net/tracker/v2/txn'
{ "done": true, "status": "text", "result": { "quoteId": "text", "firstTransactionHash": "text", "estimatedDuration": 1, "currentLegIndex": 1, "legs": [ { "chain": "text", "hash": "text", "provider": "text", "txnType": "text", "fromAsset": "text", "fromAssetImage": "text", "fromAmount": "text", "toAsset": "text", "toAssetImage": "text", "toAmount": "text", "updateTimestamp": 1, "estimatedDuration": 1, "status": "text" } ] } }