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

# API discovery

> Index derived from the auto-generated OpenAPI spec. See /docs/swagger.json for the full Swagger document.



## OpenAPI

````yaml https://api-421614.alphagrid.capital/docs/swagger.json get /
openapi: 3.1.0
info:
  title: AlphaGrid API
  version: 0.1.0
  description: >-
    AlphaGrid HTTP API. MCP tools mirror these operations at POST /mcp
    (Streamable HTTP). For LLM URL fetchers, use GET /vaults or GET
    /vaults?format=md — see /llms.txt.
servers:
  - url: https://api-421614.alphagrid.capital/
    description: Current deployment
security: []
tags:
  - name: System
    description: Health, discovery, and operational endpoints
  - name: Vaults
    description: Thematic ERC-4626 vault catalog
  - name: Agents
    description: Agent registration via x402 and AgentRegistry
  - name: Trading
    description: Trade intents, positions, and on-chain risk state reads
paths:
  /:
    get:
      tags:
        - System
      summary: API discovery
      description: >-
        Index derived from the auto-generated OpenAPI spec. See
        /docs/swagger.json for the full Swagger document.
      responses:
        '200':
          description: API index (generated from OpenAPI)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiDiscovery'
components:
  schemas:
    ApiDiscovery:
      type: object
      properties:
        name:
          type: string
        version:
          type: string
        description:
          type: string
        baseUrl:
          type: string
          format: uri
        documentation:
          type: object
          properties:
            openapi:
              type: string
              format: uri
            swaggerUi:
              type: string
              format: uri
            llmsTxt:
              type: string
              format: uri
          required:
            - openapi
            - swaggerUi
            - llmsTxt
        operations:
          type: array
          items:
            type: object
            properties:
              method:
                type: string
              path:
                type: string
              url:
                type: string
                format: uri
              summary:
                type: string
              description:
                type: string
              tags:
                type: array
                items:
                  type: string
              formats:
                type: array
                items:
                  type: string
            required:
              - method
              - path
              - url
              - summary
              - description
              - tags
              - formats
        fetchableEndpoints:
          type: array
          items:
            type: object
            properties:
              method:
                type: string
              path:
                type: string
              url:
                type: string
                format: uri
              summary:
                type: string
              description:
                type: string
              tags:
                type: array
                items:
                  type: string
              formats:
                type: array
                items:
                  type: string
            required:
              - method
              - path
              - url
              - summary
              - description
              - tags
              - formats
        mcp:
          type: object
          properties:
            method:
              type: string
            url:
              type: string
              format: uri
            note:
              type: string
            tools:
              type: array
              items:
                type: string
          required:
            - method
            - url
            - note
            - tools
        hints:
          type: object
          properties:
            forChatGptBrowsing:
              type: string
            forCustomGptActions:
              type: string
            forMcpClients:
              type: string
          required:
            - forChatGptBrowsing
            - forCustomGptActions
            - forMcpClients
      required:
        - name
        - version
        - description
        - baseUrl
        - documentation
        - operations
        - fetchableEndpoints
        - mcp
        - hints

````