The Medical Necessity API helps determine what documents are required for a medical procedure to be deemed medically necessary. It checks if the provided information is sufficient or if additional documentation is needed for the approval process. This API is particularly helpful in the authorization process by ensuring all necessary records and information are available to facilitate the review.
POST /api/v1/medical/necessityThe response includes a list of documents that are required to meet medical necessity standards, along with a flag indicating any missing documents that are needed for the authorization process.
{
"hcpcs_code": "J0897",
"documents": ["md_notes_pdf_url", "scan_report_pdf_url"]
}
{
"required_documents": ["Lab Report", "Physician Notes"],
"missing_documents": ["Physician Notes"]
}