{
  "openapi": "3.1.0",
  "info": {
    "title": "EBROTECH Agentic API",
    "version": "1.0.0",
    "description": "Read-only JSON endpoints describing EBROTECH: org identity, released verticals, supported software integrations, and pricing tiers. Built statically from the site's source of truth. EBROTECH adds AI on top of the software a business already uses, without forcing a migration.",
    "contact": {
      "name": "EBROTECH",
      "email": "info@ebrotech.net",
      "url": "https://ebrotech.net"
    }
  },
  "servers": [
    {
      "url": "https://ebrotech.net"
    }
  ],
  "paths": {
    "/api/catalog.json": {
      "get": {
        "operationId": "getCatalog",
        "summary": "Organization identity + services overview (index).",
        "responses": {
          "200": {
            "description": "Org identity, differentiators, service tiers, released verticals, endpoint index.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/verticals.json": {
      "get": {
        "operationId": "getVerticals",
        "summary": "Released verticals (sectors EBROTECH operates today).",
        "responses": {
          "200": {
            "description": "List of released verticals: slug, name, what we do, pains, results, key software, ROI.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/software.json": {
      "get": {
        "operationId": "getSoftware",
        "summary": "Released software integrations EBROTECH connects AI on top of.",
        "responses": {
          "200": {
            "description": "List of supported legacy software: slug, name, vertical, connection path, what we automate.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/pricing.json": {
      "get": {
        "operationId": "getPricing",
        "summary": "Service tiers (Bridge/Augment/Migrate) + floor + Legacy Diagnostic.",
        "responses": {
          "200": {
            "description": "Three monthly tiers from 97€/mes, plus the one-off Legacy API Diagnostic. Final setup adjusted during discovery.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/niches.json": {
      "get": {
        "operationId": "getNiches",
        "summary": "Released B2B niches (verticals) with cross-locale slugs and live URLs.",
        "responses": {
          "200": {
            "description": "Full set of released niches: key, ES slug, name, legacy software, sub-brand, and per-locale slug/URL for the live markets (es/en/it/fr/pt).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "operationId": "getLlmsTxt",
        "summary": "LLM-readable summary of EBROTECH (markdown, llms.txt standard).",
        "responses": {
          "200": {
            "description": "Concise machine-ingestible overview: positioning, tiers, niche/software counts, regulatory bridges (DATEV-Format, FEC, SAF-T, SPED, GAEB, xDT, Veri*Factu, PEPPOL, EN-16931), live markets and key page links.",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/llms-full.txt": {
      "get": {
        "operationId": "getLlmsFull",
        "summary": "Full content dump of the key pages for LLM ingestion (markdown).",
        "responses": {
          "200": {
            "description": "Verbatim copy of the key pages plus every released vertical and software integration, generated from the site's source of truth.",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/ai-catalog.json": {
      "get": {
        "operationId": "getAiCatalog",
        "summary": "Agentic Resource Discovery (ARD) catalog (urn:air).",
        "responses": {
          "200": {
            "description": "ARD catalog entries pointing agents to EBROTECH's identity, verticals, niches, software, pricing and contact resources.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  }
}