Introduction
- About Crossmint
- Supported Chains
- Platform
Wallets
- Introduction
- Custodial Wallets
- Smart Wallets
- Advanced Topics
Minting Tools
- Introduction
- Quickstart ⚡
- Guides
- Advanced Topics
Subscriptions
Verifiable Credentials
- Introduction
- Quickstart ⚡
- Guides
- Advanced Topics
NFT Checkout
- Introduction
- No-Code Storefront
- Pay Button
- Embedded Checkout
- Headless Checkout
- Creating or Importing NFT Collections
- Advanced Topics
Authentication
- Introduction
- Quickstart ⚡
- Guides
- Advanced Topics
List Collections
Get a list of all collections associated with your project
Replace:
<QUICKNODE_URL>
: Set to your own quicknode RPC URL
curl -i '<QUICKNODE_URL>' -X POST -H 'content-type: application/json' --data-binary '{
"jsonrpc": "2.0",
"method": "cm_listCollections",
"params": [
]
}'
Parameters
No input parameters
Returns
[
{
"id": "<collectionId>",
"metadata": {
"name": "my collection name",
"description": "my collection description",
"imageUrl": "https://www.crossmint.com/api/2022-06-09/media/defaultCollectionImage"
},
"onChain": {
"chain": "solana",
"type": "metaplex-certified-collection"
}
}
]
On this page