action nebl_testnet_get_address_info { label: "Information On a Neblio Address" description: "Returns both NEBL and NTP1 token UTXOs held at the given address.\n" provider: nebl method: GET path: "/testnet/ntp1/addressinfo/{address}" encoding: json input: { type: "object" properties: { address: { type: "string" } } required: ["address"] additionalProperties: false } output: { type: "object" properties: { address: { type: "string" description: "The Neblio Address" } utxos: { type: "array" description: "Array of UTXOs held at this address." items: { type: "object" properties: { blockheight: { type: "number" description: "Blockheight of the UTXO" } blocktime: { type: "number" description: "Blocktime of the UTXO" } index: { type: "number" description: "Index of the UTXO at this address" } scriptPubKey: { type: "object" description: "Object representing the scruptPubKey of the UTXO" } tokens: { type: "array" description: "Array of NTP1 tokens in this UTXO." items: { type: "object" properties: { aggregationPolicy: { type: "string" description: "Whether the tokens can be aggregated together" } amount: { type: "number" description: "Number of Tokens" } divisibility: { type: "number" description: "Decimal places the token is divisible to" } issueTxid: { type: "string" description: "TXID the token originally was issued in" } lockStatus: { type: "boolean" description: "Whether the token is locked, preventing more from being issued" } tokenId: { type: "string" description: "Unique NTP1 identifier for this token" } } } } txid: { type: "string" description: "Txid of this UTXO" } used: { type: "boolean" description: "Whether the UTXO has been used" } value: { type: "number" description: "Value of the UTXO in NEBL satoshi" } } } } } } }