API ReferenceapiclinicalGET /v1/recommendation-lift

GET /v1/recommendation-lift

Service: clinical · operationId: (none)

Required scopes

(no scope declared — review service config)

Query parameters

  • category (string) required
  • from (string) required
  • to (string) required

Responses

200 Aggregated recommendation lift for a category

{
  "type": "object",
  "properties": {
    "category": {
      "type": "string",
      "enum": [
        "lifestyle",
        "dietary",
        "supplementation",
        "monitoring",
        "referral",
        "medication_review"
      ]
    },
    "acceptance_rate": {
      "type": "number"
    },
    "average_biomarker_delta": {
      "type": [
        "number",
        "null"
      ]
    },
    "sample_size": {
      "type": "integer",
      "minimum": 0
    }
  },
  "required": [
    "category",
    "acceptance_rate",
    "average_biomarker_delta",
    "sample_size"
  ]
}

Example

curl -X GET https://clinical.platform.loop.health/v1/recommendation-lift \
  -H "Authorization: Bearer $ACCESS_TOKEN"