Hunt across a family of collections
find_in_groupSearch many NFT collections at once for specific edition numbers. Returns each match’s collection, ask price, floor, and how far above floor it is so you can spot cheap listings.
Instructions
Search MANY collections at once for a specific edition number. DC comics on Candy are 272 separate collections, one per issue, so 'is any DC #1 or #100 listed, and how close to floor' cannot be asked of one collection - this asks a batch of them and hands back a cursor for the rest. Answers 'any #1 for sale across DC', 'cheapest low serial in the MLB set', 'which issues have a #100 listed under 1 SOL'. Each match names its collection, its ask, that collection's floor and how far above floor it is. Use groups from search_collections, or name the collections yourself.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| batch | No | How many collections to read in this call. Each one costs a request or two, so a large batch is a long wait. | |
| group | No | A family in the registry: DC, MLB or Other. Case-insensitive. | |
| serials | No | Edition numbers to hunt, e.g. [1, 100]. Ignored when lowestOnly is true. Default [1, 100]. | |
| startAt | No | Where in the group to start; use nextStartAt from the previous call. Default 0. | |
| lowestOnly | No | Return the lowest serial listed in each collection instead of specific numbers. Default false. | |
| collections | No | Explicit collection names, ids or Magic Eden symbols, instead of a group | |
| maxPriceSol | No | Keep only asks at or below this price | |
| pagesPerCollection | No | Pages of 100 listings to read per collection, cheapest first. Default 2. |