GET /trade/v1/info/tx/{txHash}

Get information of a cross chain trade given a transaction hash (it has to be the transaction hash on the origin chain)

Get information of a cross chain trade

get
Authorizations
Path parameters
txHashstringRequired

Transaction hash of the trade.

Example: 0xce73f64f469f91ddf708ce5c5a0ae464c162f1e7b3415187fe8572212a56ed07
Responses
200
Get information of a cross chain trade
application/json
get
GET /trade/v1/info/tx/{txHash} HTTP/1.1
Host: 
Authorization: Bearer Bearer
Accept: */*
200

Get information of a cross chain trade

{
  "srcTxHash": "0xce73f64f469f91ddf708ce5c5a0ae464c162f1e7b3415187fe8572212a56ed07",
  "dstTxHash": "0xce73f64f469f91ddf708ce5c5a0ae464c162f1e7b3415187fe8572212a56ed07",
  "srcChainId": 109,
  "dstChainId": 102,
  "status": "DELIVERED",
  "tradeProtocol": "text",
  "stargateAdditionalInfo": {},
  "celerAdditionalInfo": {},
  "debridgeAdditionalInfo": {},
  "receivedDifferentTokens": "false",
  "providerInfo": {
    "name": "Celer",
    "contractVersion": "v2",
    "logo": "https://api.zcx.com/data/logo/interoperability-provider/cbridge.svg"
  }
}

Last updated

Was this helpful?