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

# Movers

> Biggest score movers in window — perfect for socials content.

Compares each vault's current score to its score at the start of the window
and ranks by absolute delta (signed if direction is up/down).



## OpenAPI

````yaml https://api.yieldo.xyz/openapi.json get /v1/scores/movers
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/scores/movers:
    get:
      tags:
        - scores
      summary: Movers
      description: >-
        Biggest score movers in window — perfect for socials content.


        Compares each vault's current score to its score at the start of the
        window

        and ranks by absolute delta (signed if direction is up/down).
      operationId: movers_v1_scores_movers_get
      parameters:
        - name: window
          in: query
          required: false
          schema:
            type: string
            pattern: ^(1h|6h|24h|7d|30d)$
            default: 24h
            title: Window
        - name: direction
          in: query
          required: false
          schema:
            type: string
            pattern: ^(up|down|both)$
            default: both
            title: Direction
        - name: dimension
          in: query
          required: false
          schema:
            type: string
            pattern: >-
              ^(yieldo_score|capital_score|performance_score|risk_score|trust_score)$
            default: yieldo_score
            title: Dimension
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 10
            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

````