Skip to main content
GET
/
public
/
v1
/
payor-detection
/
runs
/
{payor_detection_run_id}
Get the status and results of a payor detection run. Poll this endpoint until `status` is `COMPLETE`, then inspect `payor_detections` for individual results. Each detection includes a `confidence_level` indicating whether coverage was confirmed, potential, or not found. When a detection shows confirmed coverage, use the patient plan creation endpoint to create the plan.
curl --request GET \
  --url https://app.silnahealth.com/api/public/v1/payor-detection/runs/{payor_detection_run_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "IN_PROGRESS",
  "coverages_found": 123,
  "potential_coverages": 123,
  "total": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "payor_detections": [
    {
      "status": "ACTIVE_PLAN",
      "confidence_level": "COVERAGE_FOUND",
      "queried_payor_entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "queried_payor_entity_name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "detected_payor_entity_id": null,
      "detected_payor_entity_name": null,
      "patient_first_name": null,
      "patient_last_name": null,
      "patient_date_of_birth": null,
      "member_number": null,
      "plan_coverage_description": null,
      "plan_start_date": null,
      "plan_end_date": null,
      "other_payors": [
        {
          "name": "<string>",
          "order_number": null
        }
      ]
    }
  ]
}
Poll this endpoint until status is COMPLETE, then inspect the payor_detections array for individual results. While the run is IN_PROGRESS, the payor_detections array will be empty. The response includes summary counts to help you quickly assess results:
  • coverages_found — Number of detections with confirmed coverage (confidence_level = COVERAGE_FOUND)
  • potential_coverages — Number of detections that may need manual review (confidence_level = POTENTIAL_COVERAGE)
  • total — Total number of detections in the run
Each detection in payor_detections includes a confidence_level and status that together tell you whether coverage was confirmed, potential, or not found. See the Payor Detection Overview for detailed explanations of each status and confidence level. When a detection shows COVERAGE_FOUND, you can use the detected_payor_entity_id and member_number to create a patient plan via the Create Patient Plan API.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

payor_detection_run_id
string
required

Response

id
string<uuid>
required

The ID of the payor detection run

status
enum<string>
required

The status of the payor detection run

Available options:
IN_PROGRESS,
COMPLETE
coverages_found
integer
required

Number of detections with COVERAGE_FOUND confidence level

potential_coverages
integer
required

Number of detections with POTENTIAL_COVERAGE confidence level

total
integer
required

Total number of payor detections in this run

created_at
string<date-time>
required

When this run was created

payor_detections
V1PayorDetectionSchema · object[]

The individual payor detection results