> ## 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.

# /messari/assets/search

> Screen and rank crypto assets by sector, market cap, and price performance

**Price:** 1 credit

**💡 AI Hint:** Screen crypto assets with optional filters (sector, sub-sector, category, min/max market cap) and sort them by market cap, fully diluted market cap, 24h volume, price, rank, or price change over 24h/7d/30d. Each result has the asset's id, name, slug, symbol, sectors, sub-sectors, category, live price, 24h volume, circulating and fully diluted market cap, rank, circulating supply, and price change percentages. Use it to find top assets by market cap, gainers and losers, or assets within a sector.



## OpenAPI

````yaml /openapi-filtered.json post /api/messari/assets/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/messari/assets/search:
    post:
      tags:
        - /messari
      summary: /messari/assets/search
      description: >-
        Screen and rank crypto assets by sector, market cap, and price
        performance


        **Price:** 1 credit


        **💡 AI Hint:** Screen crypto assets with optional filters (sector,
        sub-sector, category, min/max market cap) and sort them by market cap,
        fully diluted market cap, 24h volume, price, rank, or price change over
        24h/7d/30d. Each result has the asset's id, name, slug, symbol, sectors,
        sub-sectors, category, live price, 24h volume, circulating and fully
        diluted market cap, rank, circulating supply, and price change
        percentages. Use it to find top assets by market cap, gainers and
        losers, or assets within a sector.
      operationId: __api_messari_assets_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MessariAssetsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MessariAssetResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MessariAssetsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        count:
          type: integer
          minimum: 1
          description: Max number of assets to return
        sector:
          anyOf:
            - $ref: '#/components/schemas/MessariSector'
            - type: 'null'
          description: Filter by top-level sector
        sub_sector:
          anyOf:
            - type: string
            - type: 'null'
          description: Filter by sub-sector (e.g. 'Layer-1', 'Layer-2')
        category:
          anyOf:
            - type: string
            - type: 'null'
          description: >-
            Filter by classification category (e.g. 'Cryptocurrency',
            'Networks')
        market_cap_min:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
          description: Minimum circulating market cap in USD
        market_cap_max:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
          description: Maximum circulating market cap in USD
        sort:
          $ref: '#/components/schemas/MessariAssetSort'
          description: Field to sort results by
          default: marketCap
        order:
          $ref: '#/components/schemas/MessariSortOrder'
          description: Sort order
          default: desc
      type: object
      required:
        - count
    MessariAssetResult:
      properties:
        '@type':
          type: string
          default: MessariAssetResult
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        slug:
          anyOf:
            - type: string
            - type: 'null'
        symbol:
          anyOf:
            - type: string
            - type: 'null'
        sectors:
          items:
            type: string
          type: array
          default: []
        sub_sectors:
          items:
            type: string
          type: array
          default: []
        category:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        market_cap:
          anyOf:
            - type: number
            - type: 'null'
        fully_diluted_market_cap:
          anyOf:
            - type: number
            - type: 'null'
        volume_24h:
          anyOf:
            - type: number
            - type: 'null'
        market_cap_rank:
          anyOf:
            - type: integer
            - type: 'null'
        circulating_supply:
          anyOf:
            - type: number
            - type: 'null'
        price_change_percentage_24h:
          anyOf:
            - type: number
            - type: 'null'
        price_change_percentage_7d:
          anyOf:
            - type: number
            - type: 'null'
        price_change_percentage_30d:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MessariSector:
      type: string
      enum:
        - Networks
        - DeFi
        - Stablecoins
        - AI
        - Meme
        - DePIN
        - CeFi
        - Gaming
        - NFTs
        - Tools
        - Blockchain Infrastructure
        - Blockchain Services
        - Others
    MessariAssetSort:
      type: string
      enum:
        - marketCap
        - fullyDilutedMarketCap
        - volume24h
        - price
        - rank
        - priceChange24h
        - priceChange7d
        - priceChange30d
    MessariSortOrder:
      type: string
      enum:
        - desc
        - asc
    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

````