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

# /opensea/tokens/search

> Browse and rank fungible tokens traded on OpenSea (trending, top, new)

**Price:** 1 credit

**💡 AI Hint:** Browse and rank the fungible tokens traded on OpenSea. Choose the tab (trending, top or new) and optionally restrict to specific blockchains. Each token returns its contract address, chain, name, symbol, image, current USD price, market cap, total supply, verification status, and price change and volume across the 1h, 24h, 7d and 30d windows. Pass a returned contract address and chain to the 'tokens' endpoint for full details.



## OpenAPI

````yaml /openapi-filtered.json post /api/opensea/tokens/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/opensea/tokens/search:
    post:
      tags:
        - /opensea
      summary: /opensea/tokens/search
      description: >-
        Browse and rank fungible tokens traded on OpenSea (trending, top, new)


        **Price:** 1 credit


        **💡 AI Hint:** Browse and rank the fungible tokens traded on OpenSea.
        Choose the tab (trending, top or new) and optionally restrict to
        specific blockchains. Each token returns its contract address, chain,
        name, symbol, image, current USD price, market cap, total supply,
        verification status, and price change and volume across the 1h, 24h, 7d
        and 30d windows. Pass a returned contract address and chain to the
        'tokens' endpoint for full details.
      operationId: __api_opensea_tokens_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OpenseaTokensSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OpenseaToken'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OpenseaTokensSearchPayload:
      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 tokens to return
        tab:
          $ref: '#/components/schemas/OpenseaTokenTab'
          description: Ranking tab to browse
          default: trending
        chains:
          anyOf:
            - items:
                $ref: '#/components/schemas/OpenseaChain'
              type: array
            - type: 'null'
          description: Restrict to tokens on these blockchains
      type: object
      required:
        - count
    OpenseaToken:
      properties:
        '@type':
          type: string
          default: OpenseaToken
        contract_address:
          type: string
        chain:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        symbol:
          anyOf:
            - type: string
            - type: 'null'
        decimals:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        usd_price:
          anyOf:
            - type: number
            - type: 'null'
        market_cap_usd:
          anyOf:
            - type: number
            - type: 'null'
        total_supply:
          anyOf:
            - type: number
            - type: 'null'
        is_verified:
          type: boolean
          default: false
        is_native:
          type: boolean
          default: false
        token_group:
          anyOf:
            - type: string
            - type: 'null'
        score:
          anyOf:
            - type: number
            - type: 'null'
        genesis_date:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        price_change_1h:
          anyOf:
            - type: number
            - type: 'null'
        price_change_24h:
          anyOf:
            - type: number
            - type: 'null'
        price_change_7d:
          anyOf:
            - type: number
            - type: 'null'
        price_change_30d:
          anyOf:
            - type: number
            - type: 'null'
        volume_1h:
          anyOf:
            - type: number
            - type: 'null'
        volume_24h:
          anyOf:
            - type: number
            - type: 'null'
        market_cap_change_24h:
          anyOf:
            - type: number
            - type: 'null'
        warnings:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - contract_address
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    OpenseaTokenTab:
      type: string
      enum:
        - trending
        - top
        - new
    OpenseaChain:
      type: string
      enum:
        - ethereum
        - base
        - solana
        - arbitrum
        - optimism
        - polygon
        - abstract
        - monad
        - ink
        - apechain
        - megaeth
        - soneium
        - somnia
        - animechain
        - avalanche
        - b3
        - berachain
        - blast
        - flow
        - gunz
        - ronin
        - sei
        - shape
        - unichain
        - zora
        - hyperevm
    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

````