{
  "name": "Nuora",
  "description": "Clinical services API for England and Wales. AI agents can discover the live service catalog, check eligibility, book consultations, and manage patient notifications. Read the live catalog for current pricing and service availability.",
  "url": "https://nuorahealth.com",
  "version": "1.1.0",
  "documentationUrl": "https://nuorahealth.com/llms.txt",
  "provider": {
    "organization": "NUORA LTD",
    "url": "https://nuorahealth.com"
  },
  "capabilities": {
    "streaming": false,
    "pushNotifications": false
  },
  "authentication": {
    "schemes": [
      {
        "type": "apiKey",
        "in": "header",
        "name": "X-Nuora-API-Key",
        "description": "API key for authenticated operations. Register at POST /api/v1/auth/register. Format: nuora_pk_..."
      }
    ]
  },
  "defaultInputModes": ["application/json"],
  "defaultOutputModes": ["application/json"],
  "skills": [
    {
      "id": "list-services",
      "name": "List Services",
      "description": "List the current live services with pricing, eligibility URLs, and booking URLs.",
      "tags": ["healthcare", "pharmacy", "services"],
      "inputModes": [],
      "outputModes": ["application/json"],
      "examples": [
        {
          "name": "List current services",
          "description": "Returns the current service catalog with metadata"
        }
      ]
    },
    {
      "id": "check-eligibility",
      "name": "Check Eligibility",
      "description": "Check if a patient is eligible for a specific service based on age, BMI, and medical criteria. No authentication required.",
      "tags": ["healthcare", "eligibility", "screening"],
      "inputModes": ["application/json"],
      "outputModes": ["application/json"],
      "examples": [
        {
          "name": "Weight loss eligibility",
          "description": "Check eligibility for GLP-1 weight management"
        }
      ]
    },
    {
      "id": "book-consultation",
      "name": "Book Consultation",
      "description": "Book a pharmacist video consultation for a specific service. Requires API key with write:bookings scope.",
      "tags": ["healthcare", "booking", "consultation"],
      "inputModes": ["application/json"],
      "outputModes": ["application/json"],
      "examples": [
        {
          "name": "Book weight loss consultation",
          "description": "Schedule a video consultation with a pharmacist"
        }
      ]
    }
  ],
  "endpoints": {
    "rest": "https://nuorahealth.com/api/v1/",
    "a2a": "https://nuorahealth.com/api/v1/a2a"
  }
}
