Last updated 10 months ago
Get the summary data of orders associated with your API-KEY
Successful operation
"OK"
const response = await fetch('https://open-api.unisat.io/v2/inscribe/order/summary', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": 0, "msg": "OK", "data": { "orderCount": { "total": 0, "pendingCount": 0, "inscribingCount": 0, "mintedCount": 0, "closedCount": 0, "refundedCount": 0 } } }