Assets

List all Assets

get

This endpoint lists all assets.

Query parameters
asset_codeanyoptional

The code of the asset you would like to filter by.

asset_issueranyoptional

The Stellar address of the issuer for the asset you would like to filter by.

cursorintegeroptional

A number that points to a specific location in a collection of responses and is pulled from the paging_token value of a record.

Example: 6606617478959105
orderstring · enumoptional

A designation of the order in which records should appear. Options include asc (ascending) or desc (descending). If this argument isn’t set, it defaults to asc.

Available options:
limitintegeroptional

The maximum number of records returned. The limit can range from 1 to 200 - an upper limit that is hardcoded in Horizon for performance reasons. If this argument isn’t designated, it defaults to 10.

Example: 10
Responses
curl -L \
  --url 'https://xlm.nownodes.io/assets'
{
  "_links": {
    "self": {
      "href": "https://horizon-testnet.stellar.org/assets?asset_code=CNY&cursor=&limit=3&order=asc"
    },
    "next": {
      "href": "https://horizon-testnet.stellar.org/assets?asset_code=CNY&cursor=CNY_GABGBJYLIC2OGATH3DVW22UEB66TFMWC3VKTAPFIOINVESRZLFKIHA4I_credit_alphanum4&limit=3&order=asc"
    },
    "prev": {
      "href": "https://horizon-testnet.stellar.org/assets?asset_code=CNY&cursor=CNY_GA6VXTS64XUOCQZSBAYHD24ZYJYPNB3KJ2CVKSYIE43P2DQQIX74UT2A_credit_alphanum4&limit=3&order=desc"
    }
  },
  "_embedded": {
    "records": [
      {
        "_links": {
          "toml": {
            "href": "https://swisscustodys.org/.well-known/stellar.toml"
          }
        },
        "asset_type": "credit_alphanum4",
        "asset_code": "CNY",
        "asset_issuer": "GA6VXTS64XUOCQZSBAYHD24ZYJYPNB3KJ2CVKSYIE43P2DQQIX74UT2A",
        "paging_token": "CNY_GA6VXTS64XUOCQZSBAYHD24ZYJYPNB3KJ2CVKSYIE43P2DQQIX74UT2A_credit_alphanum4",
        "num_accounts": 10,
        "num_claimable_balances": 0,
        "num_contracts": 0,
        "num_liquidity_pools": 0,
        "amount": "899996000000.0000000",
        "accounts": {
          "authorized": 10,
          "authorized_to_maintain_liabilities": 0,
          "unauthorized": 0
        },
        "claimable_balances_amount": "0.0000000",
        "contracts_amount": "0.0000000",
        "liquidity_pools_amount": "0.0000000",
        "balances": {
          "authorized": "899996000000.0000000",
          "authorized_to_maintain_liabilities": "0.0000000",
          "unauthorized": "0.0000000"
        },
        "flags": {
          "auth_required": false,
          "auth_revocable": false,
          "auth_immutable": false,
          "auth_clawback_enabled": false
        }
      },
      {
        "_links": {
          "toml": {
            "href": "https://StellarAssets.org/fx/.well-known/stellar.toml"
          }
        },
        "asset_type": "credit_alphanum4",
        "asset_code": "CNY",
        "asset_issuer": "GAASPHILC6DCBPP2P4T66QNSYF6C6OGN6DK36NY4G5SBR7AWH75TJG7N",
        "paging_token": "CNY_GAASPHILC6DCBPP2P4T66QNSYF6C6OGN6DK36NY4G5SBR7AWH75TJG7N_credit_alphanum4",
        "num_accounts": 43,
        "num_claimable_balances": 0,
        "num_contracts": 0,
        "num_liquidity_pools": 0,
        "amount": "1.0000000",
        "accounts": {
          "authorized": 43,
          "authorized_to_maintain_liabilities": 0,
          "unauthorized": 0
        },
        "claimable_balances_amount": "0.0000000",
        "contracts_amount": "0.0000000",
        "liquidity_pools_amount": "0.0000000",
        "balances": {
          "authorized": "1.0000000",
          "authorized_to_maintain_liabilities": "0.0000000",
          "unauthorized": "0.0000000"
        },
        "flags": {
          "auth_required": false,
          "auth_revocable": true,
          "auth_immutable": false,
          "auth_clawback_enabled": true
        }
      },
      {
        "_links": {
          "toml": {
            "href": "https://masterstellar.com/.well-known/stellar.toml"
          }
        },
        "asset_type": "credit_alphanum4",
        "asset_code": "CNY",
        "asset_issuer": "GABGBJYLIC2OGATH3DVW22UEB66TFMWC3VKTAPFIOINVESRZLFKIHA4I",
        "paging_token": "CNY_GABGBJYLIC2OGATH3DVW22UEB66TFMWC3VKTAPFIOINVESRZLFKIHA4I_credit_alphanum4",
        "num_accounts": 1,
        "num_claimable_balances": 0,
        "num_contracts": 0,
        "num_liquidity_pools": 0,
        "amount": "65000000000.0000000",
        "accounts": {
          "authorized": 1,
          "authorized_to_maintain_liabilities": 0,
          "unauthorized": 0
        },
        "claimable_balances_amount": "0.0000000",
        "contracts_amount": "0.0000000",
        "liquidity_pools_amount": "0.0000000",
        "balances": {
          "authorized": "65000000000.0000000",
          "authorized_to_maintain_liabilities": "0.0000000",
          "unauthorized": "0.0000000"
        },
        "flags": {
          "auth_required": false,
          "auth_revocable": false,
          "auth_immutable": false,
          "auth_clawback_enabled": false
        }
      }
    ]
  }
}