Created assets

Lookup an account's created asset parameters, optionally for a specific ID.

GEThttps://algo-index.nownodes.io/v2/accounts/{account-id}/created-assets
Path parameters
account-id*string

account string

Query parameters
Response

(empty)

Body
assets*array of Asset (object)
current-round*integer

Round at which the results were computed.

next-tokenstring

Used for pagination, when making another request provide this token with the next parameter.

Request
const response = await fetch('https://algo-index.nownodes.io/v2/accounts/{account-id}/created-assets', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "assets": [
    {
      "created-at-round": 0,
      "deleted": false,
      "destroyed-at-round": 0,
      "index": 0,
      "params": {
        "clawback": "text",
        "creator": "text",
        "decimals": 0,
        "default-frozen": false,
        "freeze": "text",
        "manager": "text",
        "metadata-hash": "Ynl0ZXM=",
        "name": "text",
        "name-b64": "Ynl0ZXM=",
        "reserve": "text",
        "total": 0,
        "unit-name": "text",
        "unit-name-b64": "Ynl0ZXM=",
        "url": "text",
        "url-b64": "Ynl0ZXM="
      }
    }
  ],
  "current-round": 0,
  "next-token": "text"
}