Authentication
All API requests require an API key passed in thex-api-key header:
curl -H "x-api-key: your-api-key" https://api.penelope.health/v1/lobs
Example Use Cases
Use Case 1: Check Coverage for a Procedure
Scenario: Verify if Aetna Commercial insurance covers CPT code 15823 (upper eyelid blepharoplasty). Step 1: Get Aetna Commerciallob_id
curl -X GET "https://api-sandbox.penelope.health/v1/lobs" \
-H "x-api-key: $PENELOPE_API_KEY"
{
"data": [
{
"lob_id": "ACIRL_medicare_part_a_VA",
"payer_id": "ACIRL",
"payer_name": "Medicare Virginia Part A",
"lob": "medicare_part_a",
"state": "VA"
},
{
"lob_id": "ACIRL_medicare_part_a_WV",
"payer_id": "ACIRL",
"payer_name": "Medicare Virginia Part A",
"lob": "medicare_part_a",
"state": "WV"
},
{
"lob_id": "AMCKE_medicare_part_b_TN",
"payer_id": "AMCKE",
"payer_name": "Medicare Tennessee Part B",
"lob": "medicare_part_b",
"state": "TN"
}
...
],
"limit": 20,
"offset": 0,
"has_more": true
}
curl -X POST "https://api-sandbox.penelope.health/v1/policies/filter" \
-H "x-api-key: $PENELOPE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"policies": {
"code_refs": {
"refs": [
{
"code_system": "CPT",
"codes": [
"15823"
],
"relationship": [
"COVERS"
]
}
]
},
"lob_ids": [
"HPQRS_commercial_US_"
]
}
}'
{
"data": [],
"limit": 20,
"offset": 0,
"has_more": false
}
applicability field confirms this policy applies to all Aetna lines of business nationwide.
Set "include_code_groups": true in the request body to see all codes grouped by system and relationship type.
Use Case 2: Search Policies by Topic
Scenario: Search for policies related to “blepharoplasty” to understand coverage across payers.curl -X POST "https://api-sandbox.penelope.health/v1/policies/filter" \
-H "x-api-key: $PENELOPE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"policies": {
"q": "blepharoplasty",
"retired": false
},
"sort": "relevance",
"limit": 3,
"include_applicability": true
}'
{
"data": [
{
"policy_id": "bcbsm/76765/2026-03-01",
"policy_number": "76765",
"title": "MEDICAL POLICY - BLEPHAROPLASTY AND REPAIR OF BROW PTOSIS",
"effective_from_date": "2026-03-01",
"effective_to_date": null,
"file_url": "https://www.bcbsm.com/amslibs/content/dam/public/mpr/mprsearch/pdf/76765.pdf",
"file_type": "pdf",
"listing_url": "https://www.bcbsm.com/providers/mpradmin/",
"summary": "This policy addresses surgical management of upper eyelid redundant tissue and eyebrow descent\u2014blepharoplasty and repair of brow ptosis\u2014focusing on restoration of function (visual field preservation, relief of dermatitis, prosthetic fit, and refractory blepharospasm). It defines objective functional...",
"score": 4.3,
"applicability": [
{
"payer_ids": [
"KRPCH"
],
"payer_names": [
"Blue Cross Blue Shield of Michigan"
],
"lobs": [
"commercial",
"medicare_advantage"
],
"state": "MI"
}
],
"code_groups": null
},
{
"policy_id": "bsc/medical/BSC7.01/2026-04-01",
"policy_number": "BSC7.01",
"title": "Blepharoplasty, Blepharoptosis Repair (Levator Resection) and Brow Lift (Repair of Brow Ptosis)",
"effective_from_date": "2026-04-01",
"effective_to_date": null,
"file_url": "https://www.blueshieldca.com/content/dam/bsca/en/provider/docs/medical-policies/Blepharoplasty-Blepharoptosis-Repair-Brow-Lift.pdf",
"file_type": "pdf",
"listing_url": "https://www.blueshieldca.com/en/provider/authorizations/policy-medical/list",
"summary": "This Blue Shield of California medical policy (BSC7.01) addresses functional indications and medical necessity criteria for upper and lower eyelid blepharoplasty, blepharoptosis/ptosis repair (including levator resection and frontalis sling techniques), and brow lift/brow ptosis repair. It applies R...",
"score": 4.2,
"applicability": [
{
"payer_ids": [
"JDGWJ"
],
"payer_names": [
"Blue Shield of California"
],
"lobs": [
"commercial",
"individual_aca",
"medicare_advantage"
],
"state": "CA"
}
],
"code_groups": null
},
{
"policy_id": "anthem/abcbs/CG-SURG-03/2026-01-06",
"policy_number": "CG-SURG-03",
"title": "CG-SURG-03 Blepharoplasty, Blepharoptosis Repair, and Brow Lift",
"effective_from_date": "2026-01-06",
"effective_to_date": null,
"file_url": "https://anthem.com/medpolicies/abcbs/active/gl_pw_a051144.html",
"file_type": "html",
"listing_url": "https://www.anthem.com/medpolicies/abcbs/active/fulllist.json",
"summary": "This clinical UM guideline (CG-SURG-03) addresses medical necessity criteria for blepharoplasty, blepharoptosis (ptosis) repair, and brow lift procedures of the upper and lower eyelids and forehead when performed for functional/visual-field impairment. It distinguishes medically necessary, reconstru...",
"score": 4.1,
"applicability": [
{
"payer_ids": [
"TBEZC"
],
"payer_names": [
"Anthem Blue Cross Blue Shield of Colorado"
],
"lobs": [
"commercial",
"individual_aca",
"medicaid",
"medicare_advantage"
],
"state": "CO"
},
{
"payer_ids": [
"DRWRY"
],
"payer_names": [
"Anthem Blue Cross Blue Shield of Connecticut"
],
"lobs": [
"commercial",
"individual_aca",
"medicaid",
"medicare_advantage"
],
"state": "CT"
},
{
"payer_ids": [
"VDCLI"
],
"payer_names": [
"Anthem Blue Cross Blue Shield of Georgia"
],
"lobs": [
"commercial",
"individual_aca",
"medicaid",
"medicare_advantage"
],
"state": "GA"
},
"... (8 more)"
],
"code_groups": null
}
],
"limit": 3,
"offset": 0,
"has_more": false
}
applicability field shows which payers (11 for abcbs), lines of business, and states each policy applies to.
Use Case 3: Query Historical Policy Versions
Scenario: Check what policies were active on a specific date, or retrieve all policy versions. Option A: Query policies active on a specific past datecurl -X POST "https://api-sandbox.penelope.health/v1/policies/filter" \
-H "x-api-key: $PENELOPE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"policies": {
"code_refs": {
"refs": [
{
"code_system": "CPT",
"codes": [
"15823"
]
}
]
},
"effective_date": {
"end": "2024-06-15"
}
}
}'
{
"data": [
{
"policy_id": "medicare/lcd/34411/2021-05-20",
"policy_number": "34411",
"title": "Blepharoplasty, Eyelid Surgery, and Brow Lift",
"effective_from_date": "2021-05-20",
"effective_to_date": null,
"file_url": "https://www.cms.gov/medicare-coverage-database/view/lcd.aspx?lcdid=34411",
"file_type": "md",
"listing_url": "https://downloads.cms.gov/medicare-coverage-database/downloads/exports/current_lcd.zip",
"summary": "<p>Blepharoplasty, blepharoptosis repair, and brow lift are surgeries that may be performed to improve function or provided strictly for cosmetic reasons. Medicare considers surgeries performed to improve function as reasonable and necessary. Surgeries performed solely for cosmetic reasons are not c...",
"score": 4.3,
"applicability": null,
"code_groups": null
},
{
"policy_id": "medicare/lcd/34028/2021-03-21",
"policy_number": "34028",
"title": "Blepharoplasty, Blepharoptosis Repair and Surgical Procedures of the Brow",
"effective_from_date": "2021-03-21",
"effective_to_date": null,
"file_url": "https://www.cms.gov/medicare-coverage-database/view/lcd.aspx?lcdid=34028",
"file_type": "md",
"listing_url": "https://downloads.cms.gov/medicare-coverage-database/downloads/exports/current_lcd.zip",
"summary": "<p>Compliance with the provisions in this policy may be monitored and addressed through post payment data analysis and subsequent medical review audits.</p>\n<p><strong>History/Background and/or General Information</strong></p>\n<p>Blepharoplasty may be performed for functional, reconstructive or cosm...",
"score": 4.2,
"applicability": null,
"code_groups": null
},
{
"policy_id": "medicare/lcd/35004/2021-03-21",
"policy_number": "35004",
"title": "Blepharoplasty, Blepharoptosis Repair and Surgical Procedures of the Brow",
"effective_from_date": "2021-03-21",
"effective_to_date": null,
"file_url": "https://www.cms.gov/medicare-coverage-database/view/lcd.aspx?lcdid=35004",
"file_type": "md",
"listing_url": "https://downloads.cms.gov/medicare-coverage-database/downloads/exports/current_lcd.zip",
"summary": "<p>Compliance with the provisions in this policy may be monitored and addressed through post payment data analysis and subsequent medical review audits. <br /><br /><strong>History/Background and/or General Information</strong> <br /><br />Blepharoplasty may be performed for functional, reconstructi...",
"score": 4.1,
"applicability": null,
"code_groups": null
}
],
"limit": 20,
"offset": 0,
"has_more": false
}
curl -X POST "https://api-sandbox.penelope.health/v1/policies/filter" \
-H "x-api-key: $PENELOPE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"policies": {
"code_refs": {
"refs": [
{
"code_system": "CPT",
"codes": [
"15823"
]
}
]
}
}
}'
{
"data": [
{
"policy_id": "cigna/0045/2026-06-15",
"policy_number": "0045",
"title": "Blepharoplasty, Reconstructive Eyelid Surgery, and Brow Lift - (0045)",
"effective_from_date": "2026-06-15",
"effective_to_date": null,
"file_url": "https://static.cigna.com/assets/chcp/pdf/coveragePolicies/medical/mm_0045_coveragepositioncriteria_blepharoplasty.pdf",
"file_type": "pdf",
"listing_url": "https://static.cigna.com/assets/chcp/resourceLibrary/coveragePolicies/medical_a-z.html",
"summary": "This Cigna medical coverage policy (Policy 0045) addresses functional indications, documentation requirements, and coding for blepharoplasty, blepharoptosis (ptosis) repair, brow lift, and eyelid retraction surgery. It defines medically necessary criteria for upper and lower reconstructive blepharop...",
"score": 4.3,
"applicability": null,
"code_groups": null
},
{
"policy_id": "cigna/0045/2025-04-15",
"policy_number": "0045",
"title": "Blepharoplasty, Reconstructive Eyelid Surgery, and Brow Lift",
"effective_from_date": "2025-04-15",
"effective_to_date": "2026-04-15",
"file_url": "https://static.cigna.com/assets/chcp/pdf/coveragePolicies/medical/mm_0045_coveragepositioncriteria_blepharoplasty.pdf",
"file_type": "pdf",
"listing_url": "https://static.cigna.com/assets/chcp/resourceLibrary/coveragePolicies/medical_a-z.html",
"summary": "This Coverage Policy addresses reconstructive and functional eyelid and brow procedures, focusing on indications for blepharoplasty, blepharoptosis repair, brow ptosis correction and eyelid malposition surgery when functional impairment is documented. Covered conditions include dermatochalasis/bleph...",
"score": 4.2,
"applicability": null,
"code_groups": null
},
{
"policy_id": "medicare/lcd/34411/2021-05-20",
"policy_number": "34411",
"title": "Blepharoplasty, Eyelid Surgery, and Brow Lift",
"effective_from_date": "2021-05-20",
"effective_to_date": null,
"file_url": "https://www.cms.gov/medicare-coverage-database/view/lcd.aspx?lcdid=34411",
"file_type": "md",
"listing_url": "https://downloads.cms.gov/medicare-coverage-database/downloads/exports/current_lcd.zip",
"summary": "<p>Blepharoplasty, blepharoptosis repair, and brow lift are surgeries that may be performed to improve function or provided strictly for cosmetic reasons. Medicare considers surgeries performed to improve function as reasonable and necessary. Surgeries performed solely for cosmetic reasons are not c...",
"score": 4.1,
"applicability": null,
"code_groups": null
}
],
"limit": 20,
"offset": 0,
"has_more": false
}
By default (omitting date filters), all policy versions are returned. Useeffective_dateandretiredfilters to narrow by date range or active status.
