Skip to main content
Version: 2.0

Get NFT collections by collection ID hashes

GEThttps://mainnet-aptos-api.moralis.io/collections/ids

Get one or many NFT Collections by collection ID hash.

QUERY PARAMS
idsarrayrequired
The identifiers of the collections to get
Responses
200 array
collection_data_id_hashstringrequired
The identifier of the collection
collection_namestringrequired
The name of the collection
creator_addressstringrequired
The address of the creator of the collection
descriptionstringrequired
The description of the collection
description_mutablebooleanrequired
Whether the description can be changed
last_transaction_timestampstringrequired
The timestamp of the last transaction returned in milliseconds
last_transaction_versionstringrequired
The version of the last transaction
maximumstringrequired
The maximum number of tokens that can be minted
maximum_mutablebooleanrequired
Whether the maximum number of tokens can be changed
metadata_uristringrequired
The URI of the image of the collection
supplystringrequired
The number of tokens minted
table_handlestringrequired
The address of the table that stores the tokens
uri_mutablebooleanrequired
Whether the URI of the image can be changed
API KEY
import Moralis from 'moralis';

try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});

const response = await Moralis.AptosApi.collections.getNFTCollectionsByIds({});

console.log(response);
} catch (e) {
console.error(e);
}
Response Example
[
{
"collection_data_id_hash": "6993fb8b5688d392a2d94127b9926519d6327e69f2bcf3dc0c5df2c060aec97d",
"collection_name": "Topaz Troopers",
"creator_address": "0x9125e4054d884fdc7296b66e12c0d63a7baa0d88c77e8e784987c0a967c670ac",
"description": "A badge which proves you are an OG #TopazTrooper.",
"description_mutable": "false",
"last_transaction_timestamp": "2022-09-17T22:03:32.000000Z",
"last_transaction_version": "210373856",
"maximum": "18446744073709551615",
"maximum_mutable": "false",
"metadata_uri": "https://static-cdn.risewallet.io/nft/aptos-monkeys/1572.jpeg",
"supply": "32976",
"table_handle": "0x293d59ded27fc85fef070b026834d2be7e7ced76c3c32ecbcd4f44b461518c30",
"uri_mutable": "false"
}
]