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

# StableWatch stable-pool APY snapshot + history

> The `{ stableApy: [...] }` snapshot the app previously fetched from the dashboard `/apy`. The mcp now owns this data. Not readiness-gated: serves last-good (or an empty list) with a visible stale flag.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/stable-apy
openapi: 3.1.0
info:
  title: Spiral Stake — Read API (v1)
  version: 0.1.0
  description: >-
    Read-only composition authority for Spiral Stake strategy data. Serves the
    frozen /strategies contract (agents + app) plus the full app read surface.
    All numbers are composed from warm cache; a stale/failed upstream serves
    last-good with a visible stale age.
servers:
  - url: https://api.spiralstake.xyz
    description: Production
  - url: http://localhost:8787
    description: Local
security: []
tags:
  - name: Public
    description: Open read endpoints — no key required.
  - name: Partner
    description: 'Keyed integration API — Authorization: Bearer <key>.'
paths:
  /v1/stable-apy:
    get:
      summary: StableWatch stable-pool APY snapshot + history
      description: >-
        The `{ stableApy: [...] }` snapshot the app previously fetched from the
        dashboard `/apy`. The mcp now owns this data. Not readiness-gated:
        serves last-good (or an empty list) with a visible stale flag.
      responses:
        '200':
          description: OK

````