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

# Returns ecosystem-level data for UTY and yUTY tokens



## OpenAPI

````yaml https://api.yieldpoint.io/docs/json get /v1
openapi: 3.0.0
info:
  title: YieldPoint API
  description: ''
  version: 1.1.0
  contact: {}
servers:
  - url: https://api.yieldpoint.io
security: []
tags: []
paths:
  /v1:
    get:
      tags:
        - Ecosystem
      summary: Returns ecosystem-level data for UTY and yUTY tokens
      operationId: getEcosystemDetails
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EcosystemResponse'
components:
  schemas:
    EcosystemResponse:
      type: object
      properties:
        uty:
          type: object
          properties:
            tokenSymbol:
              type: string
            address:
              type: string
              pattern: ^0x[a-fA-F0-9]{40}$
            totalSupply:
              type: string
              nullable: true
            tvl:
              type: string
              nullable: true
          required:
            - tokenSymbol
            - address
        yuty:
          type: object
          properties:
            tokenSymbol:
              type: string
            address:
              type: string
              pattern: ^0x[a-fA-F0-9]{40}$
            apy:
              type: number
              nullable: true
            apy30:
              type: number
              nullable: true
            tvl:
              type: string
              nullable: true
          required:
            - tokenSymbol
            - address
        cacheExpiry:
          type: object
          properties:
            timestamp:
              type: number
            date:
              type: string
          required:
            - timestamp
            - date
      required:
        - uty
        - yuty

````