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

# /zerion/fungibles

> Get a token's price and market profile by its Zerion token id

**Price:** 1 credit

**💡 AI Hint:** Get the full market profile of a crypto token by its Zerion token id (resolve a symbol via the search endpoint). Returns name, symbol, icon, verification, current price, market cap, fully diluted valuation, circulating and total supply, price-change percentages over multiple windows, a description, and the per-chain contract addresses.

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



## OpenAPI

````yaml /openapi-filtered.json post /api/zerion/fungibles
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/zerion/fungibles:
    post:
      tags:
        - /zerion
      summary: /zerion/fungibles
      description: >-
        Get a token's price and market profile by its Zerion token id


        **Price:** 1 credit


        **💡 AI Hint:** Get the full market profile of a crypto token by its
        Zerion token id (resolve a symbol via the search endpoint). Returns
        name, symbol, icon, verification, current price, market cap, fully
        diluted valuation, circulating and total supply, price-change
        percentages over multiple windows, a description, and the per-chain
        contract addresses.


        **⚠️ Common errors:** 412: Token not found
      operationId: __api_zerion_fungibles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ZerionFungiblePayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ZerionFungible'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ZerionFungiblePayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        fungible_id:
          type: string
          minLength: 1
          description: Zerion token id, as returned by the search endpoint
          examples:
            - BTC-ee9702a0-c587-4c69-ac0c-ce820a50c95b
            - eth
        currency:
          $ref: '#/components/schemas/ZerionCurrency'
          description: Currency to denominate price and market data in
          default: usd
      type: object
      required:
        - fungible_id
    ZerionFungible:
      properties:
        '@type':
          type: string
          default: ZerionFungible
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        symbol:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        market_cap:
          anyOf:
            - type: number
            - type: 'null'
        fully_diluted_valuation:
          anyOf:
            - type: number
            - type: 'null'
        circulating_supply:
          anyOf:
            - type: number
            - type: 'null'
        total_supply:
          anyOf:
            - type: number
            - type: 'null'
        change_1d:
          anyOf:
            - type: number
            - type: 'null'
        change_30d:
          anyOf:
            - type: number
            - type: 'null'
        change_90d:
          anyOf:
            - type: number
            - type: 'null'
        change_365d:
          anyOf:
            - type: number
            - type: 'null'
        contracts:
          additionalProperties:
            type: string
          type: object
          default: {}
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ZerionCurrency:
      type: string
      enum:
        - usd
        - eur
        - gbp
        - jpy
        - aud
        - cad
        - chf
        - cny
        - inr
        - krw
        - rub
        - brl
        - try
        - btc
        - eth
    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

````