Get all inscriptions by owner address. It's experimental API and can be dropped in the future.
account ID
"0:97264395BD65A255A429B11326C84128B7D70FFED7949ABAE3036D506BA38621"
account inscriptions
const response = await fetch('https://ton-open-api.nownodes.io/v2/experimental/accounts/{account_id}/inscriptions', { method: 'GET', headers: {}, }); const data = await response.json();
{ "inscriptions": [ { "type": "ton20", "ticker": "nano", "balance": "1000000000", "decimals": 9 } ] }