Assets
get
Search for assets.
Query parameters
include-allbooleanOptional
Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.
limitintegerOptional
Maximum number of results to return. There could be additional pages even if the limit is not reached.
nextstringOptional
The next page of results. Use the next token provided by the previous results.
creatorstringOptional
Filter just assets with the given creator address.
namestringOptional
Filter just assets with the given name.
unitstringOptional
Filter just assets with the given unit.
asset-idintegerOptional
Asset ID
Responses
200
(empty)
application/json
400
Response for errors
application/json
500
Response for errors
application/json
get
GET /v2/assets HTTP/1.1
Host: algo-index.nownodes.io
Accept: */*
{
"assets": [
{
"created-at-round": 1,
"deleted": true,
"destroyed-at-round": 1,
"index": 1,
"params": {
"clawback": "text",
"creator": "text",
"decimals": 1,
"default-frozen": true,
"freeze": "text",
"manager": "text",
"metadata-hash": "Ynl0ZXM=",
"name": "text",
"name-b64": "Ynl0ZXM=",
"reserve": "text",
"total": 1,
"unit-name": "text",
"unit-name-b64": "Ynl0ZXM=",
"url": "text",
"url-b64": "Ynl0ZXM="
}
}
],
"current-round": 1,
"next-token": "text"
}
get
Lookup asset information.
Path parameters
asset-idintegerRequired
Query parameters
include-allbooleanOptional
Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.
Responses
200
(empty)
application/json
400
Response for errors
application/json
404
Response for errors
application/json
500
Response for errors
application/json
get
GET /v2/assets/{asset-id} HTTP/1.1
Host: algo-index.nownodes.io
Accept: */*
{
"asset": {
"created-at-round": 1,
"deleted": true,
"destroyed-at-round": 1,
"index": 1,
"params": {
"clawback": "text",
"creator": "text",
"decimals": 1,
"default-frozen": true,
"freeze": "text",
"manager": "text",
"metadata-hash": "Ynl0ZXM=",
"name": "text",
"name-b64": "Ynl0ZXM=",
"reserve": "text",
"total": 1,
"unit-name": "text",
"unit-name-b64": "Ynl0ZXM=",
"url": "text",
"url-b64": "Ynl0ZXM="
}
},
"current-round": 1
}
Last updated