Get Order Summary

Get the summary data of orders associated with your API-KEY

Get order summary of current apikey

GEThttps://open-api.unisat.io/v2/inscribe/order/summary
Response

Successful operation

Body
codeinteger (int32)
msgstring
Example: "OK"
dataOrderSummary (object)
Request
const response = await fetch('https://open-api.unisat.io/v2/inscribe/order/summary', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "msg": "OK",
  "data": {
    "orderCount": {}
  }
}

Last updated