Last updated 7 days ago
Returns collections.
Collection ID
Collection name
Collection statistics
NFT ID
Returns the collection.
const response = await fetch('https://api.matrica.io/v1/collection', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "id": "text", "name": "text", "profile": { "name": "text", "pfp": "text", "banner": "text", "website": "text", "twitter": "text", "discord": "text" } } ]
const response = await fetch('https://api.matrica.io/v1/collection/nft/{nftId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "id": "text", "name": "text", "profile": { "name": "text", "pfp": "text", "banner": "text", "website": "text", "twitter": "text", "discord": "text" } }