DAN
Website
  • 🚀Accelerating Digital Ownership Adoption
  • Digital Assets Network
    • ❌Challenges in Adoption
    • ✅DAN Stack
    • 📜Modular Protocol
    • 🎯DAN Labs Impact
    • 🔐®️ ERC-7066 Author
      • Overview
  • DAN PROTOCOLS
    • 📌Modular Solutions for Digital Ownership
    • 💡Asset Creation
    • 🤝Marketplace
    • 🔓Rent Protocol
    • 💰Loan Protocol
      • How does a loan work?
    • 💰Utility Protocol
      • How does it work?
  • For Developers
    • 🚀Launchpad
      • APIs
        • User's Collections
        • Collection Details
      • SDK
        • Create Collection
        • Mint NFT
        • Mint NFT (Batch)
    • 🛒Market
      • APIs
      • SDK
        • Create Listing
        • Buy Listed NFT
        • Cancel Listing
    • ⚙️Utility
      • APIs
        • 👥Client
          • Register
          • Verify
          • Redeem Code
          • Get All Claimed Utility User
        • 👨‍💻Developer
          • Get All Benefits By Collection
      • SDK
    • 💰Loans
      • APIs
        • User Loans
        • Raw Transactions (Advanced)
      • SDK
        • EVM
        • Solana
      • Wallet Integration
        • EVM
        • Solana
    • 🗞️Rentals
      • APIs
        • NFTs (Owned and Rented)
        • NFTs (Rented)
        • Raw Transactions (Advanced)
      • On-Chain
      • SDK
        • EVM
        • Solana
      • Wallet Integration
        • EVM
        • Solana
    • ⛓️Supported Chains
  • UseCases : Case Studies
    • 🤝NFT Rentals
    • 💎Ephemeral / Consumable NFTs
    • 📝NFT Mandates
    • 🎆Post-Mint Utility
    • 💼Partial Payment at Mint
  • Community
    • 🔑Terms of Service
    • 🔏Privacy Policy
    • 🌐Website
    • 👽Discord
    • 🐦Twitter
Powered by GitBook
On this page
  1. For Developers
  2. Launchpad
  3. APIs

User's Collections

PreviousAPIsNextCollection Details

Last updated 2 months ago

🚀

Retrieve filtered collections for a user

get

Retrieves a list of collections created by the specified user with optional filters like mint type, token type, category, and pagination.

Query parameters
userAddressstringRequired

The address of the user whose collections are to be retrieved.

launchpadbooleanOptional

A filter for launchpad collections (optional).

mintTypestringOptional

A filter for the mint type of the collection (optional).

typestringOptional

A filter for the type of token (e.g., ERC721, ERC1155) (optional).

categorystringOptional

A filter for the category of the collection (optional).

chainIdstringOptional

The chain ID to filter collections by (optional).

pageintegerOptional

The page number for pagination (optional).

limitintegerOptional

The number of results per page (optional).

Responses
200
Collections retrieved successfully
application/json
500
Internal server error
application/json
get
GET /collection/getUserCollections HTTP/1.1
Host: launchpad.danlabs.xyz
Accept: */*
{
  "message": "Collections retrieved successfully",
  "collections": [
    {
      "name": "text",
      "creator": "text",
      "tokentype": "text",
      "image": "text",
      "minttype": "text",
      "featured": true,
      "collectionAddress": "text",
      "category": "text",
      "subcategory": "text",
      "mintprice": 1,
      "token_supply": 1,
      "chainid": 1
    }
  ]
}