Get Tx Outputs

get

Get the outputs of a tx.

Authorizations
Path parameters
txidstringRequired

Tx id

Query parameters
cursorintegerRequired

Start offset

Example: 0
sizeintegerRequired

Number of items returned

Example: 16
Responses
200
Successful operation
application/json
get
GET /v1/indexer/tx/{txid}/outs HTTP/1.1
Host: open-api.unisat.io
Authorization: Bearer JWT
Accept: */*
{
  "code": 0,
  "msg": "OK",
  "data": {
    "address": "text",
    "codeType": 1,
    "inscriptions": [
      {
        "inscriptionId": "text",
        "inscriptionNumber": 1,
        "isBRC20": true,
        "moved": true,
        "offset": 1
      }
    ],
    "satoshi": 1,
    "scriptPk": "text",
    "scriptType": "text",
    "height": 1,
    "txid": "text",
    "idx": 1,
    "heightSpent": 1,
    "txidSpent": "text",
    "vout": 1
  }
}

Last updated