{
  "openapi": "3.1.0",
  "info": {
    "title": "Macro Bot Browser — like4likebot.online API",
    "description": "Public information API for Macro Bot Browser Like4Like automation tool. Provides product information, pricing, and FAQ data.",
    "version": "1.0.0",
    "contact": {
      "name": "Sigma World Support",
      "url": "https://t.me/sigma_world_sw"
    },
    "license": {
      "name": "Commercial",
      "url": "https://like4likebot.online/"
    }
  },
  "servers": [
    {
      "url": "https://like4likebot.online",
      "description": "Production"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "summary": "Homepage — Product Landing Page",
        "description": "The main product page for Macro Bot Browser, a Like4Like bot and social exchange automation tool.",
        "operationId": "getHomepage",
        "responses": {
          "200": {
            "description": "HTML product landing page",
            "content": {
              "text/html": {
                "schema": { "type": "string" }
              },
              "text/markdown": {
                "description": "Markdown version for AI agents (Accept: text/markdown)",
                "schema": { "type": "string" }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "LLMs.txt — AI-Readable Product Summary",
        "description": "Structured Markdown summary of the product for LLM consumption.",
        "operationId": "getLlmsTxt",
        "responses": {
          "200": {
            "description": "Markdown content",
            "content": {
              "text/plain": { "schema": { "type": "string" } }
            }
          }
        }
      }
    },
    "/robots.txt": {
      "get": {
        "summary": "Robots.txt — Crawler Policy",
        "description": "Crawler access policy including Content-Signal directives and AI crawler rules.",
        "operationId": "getRobotsTxt",
        "responses": {
          "200": {
            "description": "Plain text robots.txt",
            "content": {
              "text/plain": { "schema": { "type": "string" } }
            }
          }
        }
      }
    },
    "/.well-known/api-catalog": {
      "get": {
        "summary": "API Catalog (RFC 9727)",
        "description": "Linkset-format API catalog for automated API discovery.",
        "operationId": "getApiCatalog",
        "responses": {
          "200": {
            "description": "application/linkset+json API catalog",
            "content": {
              "application/linkset+json": { "schema": { "type": "object" } }
            }
          }
        }
      }
    },
    "/.well-known/mcp/server-card.json": {
      "get": {
        "summary": "MCP Server Card (SEP-1649)",
        "description": "Model Context Protocol server card for agent discovery.",
        "operationId": "getMcpServerCard",
        "responses": {
          "200": {
            "description": "MCP Server Card JSON",
            "content": {
              "application/json": { "schema": { "type": "object" } }
            }
          }
        }
      }
    },
    "/.well-known/agent-skills/index.json": {
      "get": {
        "summary": "Agent Skills Discovery Index",
        "description": "Agent skills discovery index per Agent Skills Discovery RFC v0.2.0.",
        "operationId": "getAgentSkillsIndex",
        "responses": {
          "200": {
            "description": "Agent skills index JSON",
            "content": {
              "application/json": { "schema": { "type": "object" } }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Product": {
        "type": "object",
        "properties": {
          "name": { "type": "string", "example": "Macro Bot Browser V3" },
          "price": { "type": "number", "example": 15 },
          "currency": { "type": "string", "example": "USD" },
          "licenseType": { "type": "string", "example": "lifetime" },
          "platform": { "type": "string", "example": "Windows 10, Windows 11" },
          "purchaseUrl": { "type": "string", "format": "uri", "example": "https://sigmaworld.gumroad.com/l/sigma-world" }
        }
      }
    }
  }
}
