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

# List High

> HIGH-tier signals — hero 'What matters today' cards.



## OpenAPI

````yaml https://api.yieldo.xyz/openapi.json get /v1/intel/high
openapi: 3.1.0
info:
  title: Yieldo API
  description: Cross-chain deposit aggregator for ERC-4626 and custom yield vaults
  version: 1.0.0
servers:
  - url: https://api.yieldo.xyz
    description: Production
security: []
paths:
  /v1/intel/high:
    get:
      tags:
        - intel
      summary: List High
      description: HIGH-tier signals — hero 'What matters today' cards.
      operationId: list_high_v1_intel_high_get
      parameters:
        - name: since
          in: query
          required: false
          schema:
            type: string
            description: 'Time window: ''24h'', ''7d'', ''30d'''
            default: 24h
            title: Since
          description: 'Time window: ''24h'', ''7d'', ''30d'''
        - name: dimension
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Capital | Performance | Risk | Trust
            title: Dimension
          description: Capital | Performance | Risk | Trust
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````