{
  "version": "1.0",
  "site": "https://www.backlyzer.com",
  "name": "Backlyzer — SEO Backlink Monitor",
  "description": "Automated backlink monitoring tool for SEO professionals. Track dofollow/nofollow changes, anchor text modifications, 404 errors, and Google indexation status.",
  "actions": [
    {
      "id": "register-free-trial",
      "name": "Start Free Trial",
      "description": "Create a free Backlyzer account with a 14-day trial. No credit card required. Provide your name, email address, and a password (minimum 8 characters). Optionally select a plan: free, starter, pro, or agency.",
      "method": "declarative",
      "endpoint": "/register",
      "parameters": {
        "required": ["name", "email", "password", "confirm"],
        "optional": ["plan"],
        "schema": {
          "name": { "type": "string", "description": "Full name of the user" },
          "email": { "type": "string", "format": "email", "description": "Email address for the account" },
          "password": { "type": "string", "minLength": 8, "description": "Account password (minimum 8 characters)" },
          "confirm": { "type": "string", "description": "Password confirmation — must match password" },
          "plan": { "type": "string", "enum": ["free", "starter", "pro", "agency"], "default": "free", "description": "Subscription plan: free (10 links), starter €29/mo (100 links), pro €79/mo (500 links), agency €199/mo (2000 links)" }
        }
      }
    },
    {
      "id": "login",
      "name": "Log In",
      "description": "Sign in to an existing Backlyzer account with email and password.",
      "method": "declarative",
      "endpoint": "/login",
      "parameters": {
        "required": ["email", "password"],
        "schema": {
          "email": { "type": "string", "format": "email", "description": "Account email address" },
          "password": { "type": "string", "description": "Account password" }
        }
      }
    },
    {
      "id": "send-inquiry",
      "name": "Send Contact Inquiry",
      "description": "Send a message to the Backlyzer team for support, billing, plan questions, enterprise inquiries, or general questions.",
      "method": "declarative",
      "endpoint": "/contacto",
      "parameters": {
        "required": ["name", "email", "message"],
        "optional": ["subject"],
        "schema": {
          "name": { "type": "string", "description": "Full name of the person sending the inquiry" },
          "email": { "type": "string", "format": "email", "description": "Email address for reply" },
          "subject": { "type": "string", "enum": ["support", "billing", "plans", "enterprise", "other"], "description": "Inquiry category" },
          "message": { "type": "string", "description": "Description of the question, issue, or request" }
        }
      }
    },
    {
      "id": "reset-password",
      "name": "Reset Password",
      "description": "Request a password reset link via email for an existing Backlyzer account.",
      "method": "declarative",
      "endpoint": "/forgot-password",
      "parameters": {
        "required": ["email"],
        "schema": {
          "email": { "type": "string", "format": "email", "description": "Email address associated with the account" }
        }
      }
    },
    {
      "id": "select-plan",
      "name": "View Pricing Plans",
      "description": "Browse Backlyzer pricing plans and start a free trial. Plans: Free (€0, 10 links, 1 project), Starter (€29/mo, 100 links, 3 projects), Pro (€79/mo, 500 links, 15 projects), Agency (€199/mo, 2000 links, unlimited projects).",
      "method": "imperative",
      "availability": "static",
      "endpoint": "/precios"
    }
  ],
  "languages": ["es", "en"],
  "urls": {
    "pricing": "/precios",
    "pricing_en": "/en/pricing",
    "register": "/register",
    "login": "/login",
    "contact": "/contacto",
    "contact_en": "/en/contact",
    "features": "/funcionalidades",
    "features_en": "/en/features",
    "faq": "/faq",
    "blog": "/blog"
  }
}
