Collections By Deployer
Query NFT collections deployed by specific addresses across multiple chains, with comprehensive collection information and pagination support.
Try it nownftCollectionsForDeployersV2
Takes an input object with deployers (array of addresses), chainIds, and pagination parameters. It returns a connection of NFT collections that have been deployed by the specified addresses, including:
- Collection metadata (name, symbol, description)
- Network information
- Supply and holder statistics
- Floor price data
- Social links
- Media/image assets
Example Use Case: Creator Portfolio
Let's say you want to display all NFT collections created or deployed by a specific address or group of addresses.
Example Variables
{
  "deployers": ["0xe9dA256a28630EFDc637BfD4c65F0887bE1AEDa8"],
  "chainIds": [1],
  "first": 2
}
Example Query
query DeployerCollections($deployers: [Address!], $chainIds: [Int!]!, $first: Int, $after: String) {
  nftCollectionsForDeployersV2(input: { deployers: $deployers, chainIds: $chainIds, first: $first, after: $after }) {
    edges {
      node {
        # Basic collection information
        id
        address
        name
        symbol
        description
        network
        nftStandard
        type
        # Statistics
        supply
        totalSupply
        holdersCount
        circulatingSupply
        # Floor price information
        floorPrice {
          valueUsd
          valueWithDenomination
          denomination {
            symbol
            network
            address
          }
        }
        # Media assets
        medias {
          logo {
            thumbnail
            original
          }
          banner {
            original
            large
          }
        }
        # Social links
        socialLinks {
          name
          label
          url
          logoUrl
        }
        # Deployer information
        deployer
      }
    }
    # Pagination information
    pageInfo {
      hasNextPage
      endCursor
      startCursor
      hasPreviousPage
    }
  }
}
Example Response
{
  "data": {
    "nftCollectionsForDeployersV2": {
      "edges": [
        {
          "node": {
            "id": "TmZ0Q29sbGVjdGlvbi0xMDQyNQ==",
            "address": "0xbd3531da5cf5857e7cfaa92426877b022e612cf8",
            "name": "Pudgy Penguins",
            "symbol": "PPG",
            "description": "Pudgy Penguins is a collection of 8,888 NFT’s, accelerating Web3 innovation through IP utilization and community empowerment. Embodying love, empathy, & compassion, the Pudgy Penguins are a beacon of good vibes & positivity for everyone. Each holder receives exclusive access to experiences, events, IP licensing opportunities and more. Let’s break through the boundaries of Web3 together.\r\n\r\nPudgy Collections:\r\n[Lil Pudgys](https://opensea.io/collection/lilpudgys) | [Pudgy Rods](https://opensea.io/collection/pudgyrods)",
            "network": "ETHEREUM_MAINNET",
            "nftStandard": "ERC_721",
            "type": "GENERAL",
            "supply": "8888",
            "totalSupply": "8888",
            "holdersCount": "5057",
            "circulatingSupply": "8888",
            "floorPrice": {
              "valueUsd": 21424.424465526,
              "valueWithDenomination": 11.498,
              "denomination": {
                "symbol": "ETH",
                "network": "ethereum",
                "address": "0x0000000000000000000000000000000000000000"
              }
            },
            "medias": {
              "logo": {
                "thumbnail": "https://images.zapper.xyz/z/?path=zapper-fi-assets/nfts/collections/ethereum/0xbd3531da5cf5857e7cfaa92426877b022e612cf8/logo.png&width=100&checksum=p7XDnPLpOHByu3xNTTjg-lEOLdRJwubNLrFbZHEMOhY",
                "original": "https://images.zapper.xyz/z/?path=zapper-fi-assets/nfts/collections/ethereum/0xbd3531da5cf5857e7cfaa92426877b022e612cf8/logo.png&checksum=7Jvvy8ksezUi_uPxrmiqYUmXFbdCvb3Et56AlHcqaDU"
              },
              "banner": {
                "original": "https://images.zapper.xyz/z/?path=zapper-fi-assets/nfts/collections/ethereum/0xbd3531da5cf5857e7cfaa92426877b022e612cf8/banner.png&checksum=Lxm0C0sE5CESUmgj5djzakeQLCwiNtPmATolaYYWQgk",
                "large": "https://images.zapper.xyz/z/?path=zapper-fi-assets/nfts/collections/ethereum/0xbd3531da5cf5857e7cfaa92426877b022e612cf8/banner.png&width=500&checksum=a7L5xh3azbtITJ3-QSeBS66YncfdZs9pYEogwWLauYk"
              }
            },
            "socialLinks": [
              {
                "name": "opensea",
                "label": "Opensea",
                "url": "https://opensea.io/collection/pudgypenguins",
                "logoUrl": "https://storage.googleapis.com/zapper-fi-assets/logos/opensea.png"
              },
              {
                "name": "website",
                "label": "Website",
                "url": "https://www.pudgypenguins.com/",
                "logoUrl": "https://storage.googleapis.com/zapper-fi-assets/logos/website.png"
              },
              {
                "name": "discord",
                "label": "Discord",
                "url": "https://discord.gg/pudgypenguins",
                "logoUrl": "https://storage.googleapis.com/zapper-fi-assets/logos/discord.png"
              },
              {
                "name": "instagram",
                "label": "Instagram",
                "url": "https://instagram.com/pudgypenguins",
                "logoUrl": "https://storage.googleapis.com/zapper-fi-assets/logos/instagram.png"
              },
              {
                "name": "twitter",
                "label": "Twitter",
                "url": "https://twitter.com/pudgypenguins",
                "logoUrl": "https://storage.googleapis.com/zapper-fi-assets/logos/twitter.png"
              }
            ],
            "deployer": "0xe9da256a28630efdc637bfd4c65f0887be1aeda8"
          }
        },
        {
          "node": {
            "id": "TmZ0Q29sbGVjdGlvbi0xMjI2MA==",
            "address": "0x062e691c2054de82f28008a8ccc6d7a1c8ce060d",
            "name": "PudgyPresent",
            "symbol": "PP",
            "description": "It's rog season baby 🎣. What will you catch?\n\nPudgy Collections:\n[Pudgy Penguins](https://opensea.io/collection/pudgypenguins) | [Lil Pudgys](https://opensea.io/collection/lilpudgys)",
            "network": "ETHEREUM_MAINNET",
            "nftStandard": "ERC_721",
            "type": "GENERAL",
            "supply": "7399",
            "totalSupply": "7399",
            "holdersCount": "2992",
            "circulatingSupply": "7399",
            "floorPrice": {
              "valueUsd": 931.6587435,
              "valueWithDenomination": 0.5,
              "denomination": {
                "symbol": "ETH",
                "network": "ethereum",
                "address": "0x0000000000000000000000000000000000000000"
              }
            },
            "medias": {
              "logo": {
                "thumbnail": "https://images.zapper.xyz/z/?path=zapper-fi-assets/nfts/collections/ethereum/0x062e691c2054de82f28008a8ccc6d7a1c8ce060d/logo.png&width=100&checksum=ELvg0TtLfOmy4Fr7UMJTSxYzOP3IKSENqTgiCmSPUJs",
                "original": "https://images.zapper.xyz/z/?path=zapper-fi-assets/nfts/collections/ethereum/0x062e691c2054de82f28008a8ccc6d7a1c8ce060d/logo.png&checksum=nSzhOrKDQ4BsuOjYrd18IgKjJofZnXeTCbSgZDzzC9Q"
              },
              "banner": {
                "original": "https://images.zapper.xyz/z/?path=zapper-fi-assets/nfts/collections/ethereum/0x062e691c2054de82f28008a8ccc6d7a1c8ce060d/banner.png&checksum=qir27D-a-Q2c7gXoXwcEW6kQHYYVsfHUbN6aYy1jTYE",
                "large": "https://images.zapper.xyz/z/?path=zapper-fi-assets/nfts/collections/ethereum/0x062e691c2054de82f28008a8ccc6d7a1c8ce060d/banner.png&width=500&checksum=sueLmReIs8VeBQ6SOlI0NlpmX1byVH1j5zhPnc2mzrM"
              }
            },
            "socialLinks": [
              {
                "name": "opensea",
                "label": "Opensea",
                "url": "https://opensea.io/collection/pudgyrods",
                "logoUrl": "https://storage.googleapis.com/zapper-fi-assets/logos/opensea.png"
              },
              {
                "name": "website",
                "label": "Website",
                "url": "https://pudgypenguins.com",
                "logoUrl": "https://storage.googleapis.com/zapper-fi-assets/logos/website.png"
              },
              {
                "name": "discord",
                "label": "Discord",
                "url": "https://discord.gg/pudgypenguins",
                "logoUrl": "https://storage.googleapis.com/zapper-fi-assets/logos/discord.png"
              },
              {
                "name": "instagram",
                "label": "Instagram",
                "url": "https://instagram.com/pudgypenguins",
                "logoUrl": "https://storage.googleapis.com/zapper-fi-assets/logos/instagram.png"
              },
              {
                "name": "twitter",
                "label": "Twitter",
                "url": "https://twitter.com/pudgypenguins",
                "logoUrl": "https://storage.googleapis.com/zapper-fi-assets/logos/twitter.png"
              }
            ],
            "deployer": "0xe9da256a28630efdc637bfd4c65f0887be1aeda8"
          }
        }
      ],
      "pageInfo": {
        "hasNextPage": true,
        "endCursor": "ZXRoZXJldW0tMTIyNjA=",
        "startCursor": "ZXRoZXJldW0tMTA0MjU=",
        "hasPreviousPage": false
      }
    }
  }
}
Arguments
| Argument | Description | Type | Required | 
|---|---|---|---|
| input | Input object for the query | NftCollectionsForDeployersInputV2! | Yes | 
NftCollectionsForDeployersInputV2
| Field | Description | Type | Required | 
|---|---|---|---|
| deployers | Array of deployer addresses to query | [Address!] | No | 
| chainIds | Chains to include in the search | [Int!]! | Yes | 
| first | Number of collections to return | Int | No | 
| after | Cursor for pagination | String | No | 
Fields
NftCollectionsForOwnersCollectionsConnection
| Field | Description | Type | 
|---|---|---|
| edges | Array of collection edges | [NftCollectionEdge!]! | 
| pageInfo | Pagination information | PageInfo! | 
NftCollection (node)
| Field | Description | Type | 
|---|---|---|
| id | Unique identifier | ID! | 
| address | Collection contract address | Address! | 
| subCollectionIdentifier | Sub-collection identifier | String! | 
| name | Collection name | String! | 
| displayName | Display name (if different) | String | 
| symbol | Collection symbol | String! | 
| description | Collection description | String! | 
| network | Network the collection is on | Network! | 
| deployer | Address that deployed the contract | Address! | 
| socialLinks | Social media links | [SocialLink!]! | 
| supply | Current supply | BigDecimal! | 
| totalSupply | Total possible supply | BigDecimal! | 
| circulatingSupply | Tokens in circulation | BigDecimal! | 
| totalCirculatingSupply | Total circulating supply | BigDecimal! | 
| holdersCount | Number of unique holders | BigDecimal! | 
| nftStandard | NFT standard (ERC721/ERC1155) | NftStandard! | 
| type | Collection type | NftCollectionType! | 
| floorPrice | Current floor price | NftValueDenomination | 
| topOfferPrice | Top offer price | NftValueDenomination | 
| medias | Collection media assets | NftCollectionMedias! | 
| disabled | Whether collection is disabled | Boolean! | 
| spamScore | Spam score | BigDecimal | 
| marketCap | Estimated market cap | BigDecimal | 
Enums
enum NftStandard {
  ERC_721
  ERC_1155
}
enum NftCollectionType {
  GENERAL
  BRIDGED
  BADGE
  POAP
  TICKET
  ACCOUNT_BOUND
  WRITING
  GAMING
  ART_BLOCKS
  BRAIN_DROPS
  LENS_PROFILE
  LENS_FOLLOW
  LENS_COLLECT
  ZORA_ERC721
  ZORA_ERC1155
  BLUEPRINT
}
Notes
- Use this query to discover all collections created by specific deployer addresses
- Filter by multiple networks simultaneously for cross-chain creators
- Returns comprehensive collection metadata and statistics
- Includes floor price data where available
- Supports pagination for browsing large deployment histories