API ReferenceapiclinicalGET /v1/drug-list

GET /v1/drug-list

Service: clinical · operationId: (none)

Required scopes

(no scope declared — review service config)

Query parameters

  • query (string) —
  • limit (integer) —

Responses

200 Medication autocomplete results

{
  "type": "object",
  "properties": {
    "options": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "code",
          "name"
        ]
      }
    }
  },
  "required": [
    "options"
  ]
}

Example

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