Skip to main content
GET
/
v1
/
guideline
Get Guideline
curl --request GET \
  --url https://api.example.com/v1/guideline
{
  "guideline": {
    "guideline_code": "<string>",
    "guideline_name": "<string>",
    "guideline_json": {},
    "guideline_s3_path": "<string>",
    "guideline_version": "<string>"
  }
}

Get Guideline

Retrieve a specific medical necessity guideline by its name.

API Request

guideline_name
string
required
The name of the guideline to retrieve

Response

guideline
object
Details of the requested guideline

Request Example

Request
curl --request GET \
  --url 'https://prior-auth-api.claritycare.ai/v1/guideline?guideline_name=A-0059%20-%20Lumbar%20Spine%20MRI' \
  --header 'Authorization: Bearer {cognito_login_token}'

Response Example

Response
{
  "guideline_code": "A-0059",
  "guideline_name": "A-0059 - Lumbar Spine MRI",
  "guideline_json": {...},
  "guideline_s3_path": "s3://guidelines/A-0059.json",
  "guideline_version": "1.0"
}