{
  "openapi": "3.1.0",
  "info": {
    "title": "10X Trading Public Discovery",
    "version": "1.0.0",
    "description": "Public discovery endpoints for 10X Trading, a mobile-first multi-asset perpetual futures trading platform built on Hyperliquid."
  },
  "servers": [
    {
      "url": "https://10xperps.xyz"
    }
  ],
  "paths": {
    "/facts.json": {
      "get": {
        "summary": "Get structured product facts about 10X Trading",
        "operationId": "get10xFacts",
        "responses": {
          "200": {
            "description": "Machine-readable 10X product facts",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "Get compact LLM context for 10X Trading",
        "operationId": "get10xLlmsTxt",
        "responses": {
          "200": {
            "description": "Compact Markdown context for AI systems",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/llms-full.txt": {
      "get": {
        "summary": "Get full LLM context for 10X Trading",
        "operationId": "get10xLlmsFullTxt",
        "responses": {
          "200": {
            "description": "Full Markdown context for AI systems",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/ai/": {
      "get": {
        "summary": "Get the official 10X AI overview page",
        "operationId": "get10xAiOverview",
        "responses": {
          "200": {
            "description": "HTML AI overview and citation page",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}
