> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /magiceden/collections/search

> Rank and list Magic Eden NFT collections by volume, floor price, sales or market cap

**Price:** 1 credit

**💡 AI Hint:** Browse and rank Magic Eden NFT collections. Choose the ranking column (trading volume, floor price, listed count, market cap or sales), the time window (1d, 7d, 30d) and sort direction, and optionally restrict to verified collections or set minimum owner/sales thresholds. Each row returns the collection symbol, name, image, on-chain contract, floor price and its change, window and all-time volume and sales, market cap (in SOL and USD), listed count, total supply, owner count and the highest standing offer. Pass a returned symbol to the 'collections' endpoint for the full profile.



## OpenAPI

````yaml /openapi-filtered.json post /api/magiceden/collections/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/magiceden/collections/search:
    post:
      tags:
        - /magiceden
      summary: /magiceden/collections/search
      description: >-
        Rank and list Magic Eden NFT collections by volume, floor price, sales
        or market cap


        **Price:** 1 credit


        **💡 AI Hint:** Browse and rank Magic Eden NFT collections. Choose the
        ranking column (trading volume, floor price, listed count, market cap or
        sales), the time window (1d, 7d, 30d) and sort direction, and optionally
        restrict to verified collections or set minimum owner/sales thresholds.
        Each row returns the collection symbol, name, image, on-chain contract,
        floor price and its change, window and all-time volume and sales, market
        cap (in SOL and USD), listed count, total supply, owner count and the
        highest standing offer. Pass a returned symbol to the 'collections'
        endpoint for the full profile.
      operationId: __api_magiceden_collections_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MagicedenCollectionsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MagicedenCollectionRank'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MagicedenCollectionsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        count:
          type: integer
          minimum: 1
          description: Number of collections to return
        chain:
          $ref: '#/components/schemas/MagicedenChain'
          description: Blockchain
          default: solana
        window:
          $ref: '#/components/schemas/MagicedenCollectionWindow'
          description: Time window for volume and sales metrics
          default: 7d
        sort:
          $ref: '#/components/schemas/MagicedenCollectionSort'
          description: Column to rank collections by
          default: volume
        direction:
          $ref: '#/components/schemas/MagicedenSortDirection'
          description: Sort direction
          default: desc
        verified_only:
          type: boolean
          description: Only include verified collections
          default: true
        min_owner_count:
          type: integer
          minimum: 0
          description: Minimum number of unique owners
          default: 0
        min_sales:
          type: integer
          minimum: 0
          description: Minimum number of sales in the window
          default: 0
      type: object
      required:
        - count
    MagicedenCollectionRank:
      properties:
        '@type':
          type: string
          default: MagicedenCollectionRank
        symbol:
          type: string
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        contract:
          anyOf:
            - type: string
            - type: 'null'
        floor_price:
          anyOf:
            - type: number
            - type: 'null'
        floor_price_change:
          anyOf:
            - type: number
            - type: 'null'
        volume:
          anyOf:
            - type: number
            - type: 'null'
        volume_all:
          anyOf:
            - type: number
            - type: 'null'
        volume_change:
          anyOf:
            - type: number
            - type: 'null'
        sales:
          anyOf:
            - type: integer
            - type: 'null'
        sales_all:
          anyOf:
            - type: integer
            - type: 'null'
        sales_change:
          anyOf:
            - type: number
            - type: 'null'
        market_cap:
          anyOf:
            - type: number
            - type: 'null'
        market_cap_usd:
          anyOf:
            - type: number
            - type: 'null'
        listed_count:
          anyOf:
            - type: integer
            - type: 'null'
        total_supply:
          anyOf:
            - type: integer
            - type: 'null'
        owner_count:
          anyOf:
            - type: integer
            - type: 'null'
        unique_owner_ratio:
          anyOf:
            - type: number
            - type: 'null'
        highest_offer:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          type: boolean
          default: false
      type: object
      required:
        - symbol
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MagicedenChain:
      type: string
      enum:
        - solana
    MagicedenCollectionWindow:
      type: string
      enum:
        - 1d
        - 7d
        - 30d
    MagicedenCollectionSort:
      type: string
      enum:
        - volume
        - floorPrice
        - listedCount
        - marketCap
        - sales
    MagicedenSortDirection:
      type: string
      enum:
        - asc
        - desc
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````