Get NFT collections.
Successful Response
const response = await fetch('https://ton-index.nownodes.io/nft/collections', { method: 'GET', headers: {}, }); const data = await response.json();
{ "nft_collections": [ { "address": "text", "owner_address": "text", "last_transaction_lt": "text", "next_item_index": "text", "code_hash": "text", "data_hash": "text" } ] }