Query Trades Info

Fetch orderbok data with latest bid and ask price

API endpoint

/api/fetchTrade?tradeId={tradeId}

Request Samples

 GET https://verified-api.azurewebsites.net/api/fetchTrade?tradeId=0x1e143ed274a8d26986a05ddd482db05542c6d211aa725930d80fa2125d7f1bb8

Response Samples

Content type

application/json

{
  "result": {
    "orderType": "Buy",
    "orderReference": "0x1e143ed274a8d26986a05ddd482db05542c6d211aa725930d80fa2125d7f1bb8",
    "amountOffered": "0.333333333333333333",
    "priceOffered": "6.000000000000000006",
    "partyAddress": "0xaa0d06ed9cefb0b26ef011363c9d7880feda8f08",
    "timestamp": "1687497793",
    "counterPartyAddress": "0xaaa22bdf2a31e0d4669c7e65def34f9d61b34f97"
  }
}

Last updated