{
  "openapi": "3.1.0",
  "info": {
    "title": "x402 Alpha Scraper",
    "description": "Paid alpha data endpoints for automated trading bots. Airdrop scraping, smart-money tracking, gas optimization. All EVM-only on Base mainnet.",
    "version": "1.0.0"
  },
  "servers": [{ "url": "https://x402-alpha-scraper.vercel.app" }],
  "paths": {
    "/api/airdrops/active": {
      "post": {
        "summary": "Airdrop Alpha Scraper",
        "description": "Scrape active airdrop lists and tasks from open-source GitHub repos",
        "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object" } } } },
        "responses": { "200": { "description": "Active airdrops data" } }
      }
    },
    "/api/smart-money/transfers": {
      "post": {
        "summary": "Smart Money Transfers",
        "description": "Detect smart-money wallet transfers on Base chain via Alchemy",
        "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object" } } } },
        "responses": { "200": { "description": "Smart money transfer data" } }
      }
    },
    "/api/gas/recommendation": {
      "post": {
        "summary": "Gas Fee Recommendation",
        "description": "Real-time gas fee optimization with congestion analysis",
        "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object" } } } },
        "responses": { "200": { "description": "Gas recommendation data" } }
      }
    }
  }
}
