{
  "openapi": "3.1.0",
  "info": {
    "title": "EURMTL Machine API",
    "version": "1.0.0",
    "description": "Machine-oriented subset of EURMTL HTTP endpoints."
  },
  "servers": [
    {
      "url": "http://eurmtl.me/"
    }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "summary": "Machine-readable overview for agents",
        "responses": {
          "200": {
            "description": "Plain text guide"
          }
        }
      }
    },
    "/remote/decode": {
      "post": {
        "summary": "Decode Stellar XDR from JSON body",
        "responses": {
          "200": {
            "description": "Decoded XDR"
          },
          "400": {
            "description": "Invalid input"
          }
        }
      }
    },
    "/remote/sep07/auth/init": {
      "post": {
        "summary": "Initialize SEP-7 auth flow",
        "responses": {
          "200": {
            "description": "Flow initialized"
          },
          "400": {
            "description": "Invalid input"
          }
        }
      }
    },
    "/lab/build_xdr": {
      "post": {
        "summary": "Build Stellar transaction XDR from structured JSON",
        "responses": {
          "200": {
            "description": "Built XDR"
          },
          "400": {
            "description": "Invalid input"
          }
        }
      }
    },
    "/.well-known/stellar.toml": {
      "get": {
        "summary": "Stellar ecosystem metadata",
        "responses": {
          "200": {
            "description": "Stellar TOML"
          }
        }
      }
    }
  }
}