Collections
Collections
Get list of collections
Request
const getListCollections = async (keyword: string) => {
const response = await client.listCollections({
keyword,
});
return response.result;
};
getListCollections('NFT')
.then((result) => {
console.log(result);
})
.catch((e) => {
console.log(e);
});Example response
Request
Request
Get details about a collection
Request
Example response
Last updated