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

# Scored validators

> Returns validators scored by APY, uptime, and commission. Results are filtered by your agent tier:
- **free**: top 10 validators
- **builder**: top 25
- **pro**: all validators

Pass `validators` query param to filter to specific validator IDs (bypasses tier filter).




## OpenAPI

````yaml /openapi/leviathan.yaml get /api/v1/ika/agent/validators/scored
openapi: 3.1.0
info:
  title: Inkwell Agent API
  version: 0.1.0
  description: >
    REST API for AI agents to interact with IKA staking infrastructure and
    Leviathan protocol services.


    ## Authentication


    Most endpoints require an API key passed via the `X-API-Key` header.

    Register at `POST /api/v1/agents/self-register` to obtain a free-tier key.


    ## Rate Limits


    | Tier     | RPM | RPD    |

    |----------|-----|--------|

    | free     | 10  | 100    |

    | builder  | 100 | 1,000  |

    | pro      | custom | custom |


    Rate limit headers (`X-RateLimit-Remaining-RPM`,
    `X-RateLimit-Remaining-RPD`) are included on every authenticated response.
  contact:
    name: Inkwell Finance
    email: support@inkwell.finance
    url: https://inkwell.finance
  license:
    name: MIT
servers:
  - url: https://backend.inkwell.finance
    description: Production
  - url: http://localhost:3000
    description: Local development
security:
  - ApiKeyAuth: []
tags:
  - name: IKA Staking (Agent)
    description: >-
      Authenticated endpoints for staking allocation, transaction building, and
      rebalancing. Requires API key.
  - name: IKA Staking (Public)
    description: >-
      Public read-only endpoints for validator data, pricing, and APY history.
      No auth required.
  - name: Agent Identity
    description: Register API keys, manage agents, rotate credentials.
paths:
  /api/v1/ika/agent/validators/scored:
    get:
      tags:
        - IKA Staking (Agent)
      summary: Scored validators
      description: >
        Returns validators scored by APY, uptime, and commission. Results are
        filtered by your agent tier:

        - **free**: top 10 validators

        - **builder**: top 25

        - **pro**: all validators


        Pass `validators` query param to filter to specific validator IDs
        (bypasses tier filter).
      operationId: ikaAgentValidatorsScored
      parameters:
        - name: validators
          in: query
          required: false
          description: Comma-separated validator IDs to filter (bypasses tier filtering)
          schema:
            type: string
            example: 0xabc...,0xdef...
      responses:
        '200':
          description: Scored validator list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScoredValidatorsResponse'
        '503':
          description: IKA store not ready
components:
  schemas:
    ScoredValidatorsResponse:
      type: object
      properties:
        validators:
          type: array
          items:
            $ref: '#/components/schemas/ScoredValidator'
        epoch:
          type: integer
          nullable: true
        dataAgeSeconds:
          type: number
        tierDetail:
          type: string
    ScoredValidator:
      type: object
      properties:
        validatorId:
          type: string
        name:
          type: string
        score:
          type: number
          description: Composite score (0-100)
        apy:
          type: number
          description: Current APY percentage
        commissionRate:
          type: number
        totalStake:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Agent API key obtained via self-registration or admin registration

````