List Rune Etch Orders
You can use this endpoint to retrieve all the Runes Etch orders involving a specific destinationAddress
This is the Bitcoin address to which the minted runes should be allocated, as specified when you created your Etch order
Rune Etch orders are identified bu their orderType
get
Get orders summary by destination address.
Authorizations
x-api-keystringRequired
Query parameters
destinationAddressstringRequired
Bitcoin address to filter orders
Responses
200
Default Response
application/json
get
/v1/runes-managed/ordersGET /v1/runes-managed/orders?destinationAddress=text HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
200
Default Response
{
"items": [
{
"id": "text",
"orderType": "text",
"state": "text",
"reason": "text",
"createdAt": "text"
}
]
}Last updated