Get Transferable Inscriptions

get

Get the transferable inscriptions list of BRC20 by address.

Authorizations
Path parameters
addressstringrequired

Address

tickerstringrequired

Token ticker

Query parameters
startintegerrequired

Start offset

Example: 0
limitintegerrequired

Number of inscriptions returned

Example: 16
Responses
curl -L \
  --url 'https://open-api-fractal.unisat.io/v1/indexer/address/{address}/brc20/{ticker}/transferable-inscriptions?start=1&limit=1' \
  --header 'Authorization: Bearer JWT'
{
  "code": 0,
  "msg": "OK",
  "data": {
    "detail": {
      "inscriptionNumber": 1,
      "inscriptionId": "text",
      "satoshi": 1,
      "confirmations": 1,
      "data": {
        "op": "text",
        "tick": "text",
        "lim": "text",
        "amt": "text",
        "decimal": "text"
      }
    },
    "start": 1,
    "total": 1
  }
}

Last updated