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

> Get an OpenSea fungible token by its chain and contract address

**Price:** 1 credit

**💡 AI Hint:** Get the market details of a single fungible token traded on OpenSea, identified by its chain and contract address. Returns the token name, symbol, decimals, image, current USD price, market cap, total supply, verification status, token group, the 24h price change, and any trading warnings.

**⚠️ Common errors:** 412: Token not found



## OpenAPI

````yaml /openapi-filtered.json post /api/opensea/tokens
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:
    post:
      tags:
        - /opensea
      summary: /opensea/tokens
      description: >-
        Get an OpenSea fungible token by its chain and contract address


        **Price:** 1 credit


        **💡 AI Hint:** Get the market details of a single fungible token traded
        on OpenSea, identified by its chain and contract address. Returns the
        token name, symbol, decimals, image, current USD price, market cap,
        total supply, verification status, token group, the 24h price change,
        and any trading warnings.


        **⚠️ Common errors:** 412: Token not found
      operationId: __api_opensea_tokens_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OpenseaTokenPayload'
      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:
    OpenseaTokenPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        chain:
          $ref: '#/components/schemas/OpenseaChain'
          description: Blockchain the token lives on
          default: ethereum
        contract_address:
          type: string
          minLength: 1
          description: Fungible token contract address
          examples:
            - '0x6982508145454ce325ddbe47a25d4ec3d2311933'
      type: object
      required:
        - contract_address
    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
    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

````