Get Procedure
GET {{baseUrl}}/api/v2/ReferenceData?resourceType=procedure&searchString=vision
Overview:
This API takes an input parameter resourceType that has value 'procedure', and returns procedure-related data from systems like CPT (Current Procedural Terminology). The API provides a paginated response containing detailed information about medical procedures, including CPT codes, display names, and brief descriptions.
Example Response:
- CPT: Returns information about various procedures, such as the CPT code (e.g.,
31830
), procedure name (e.g.,Revision of tracheostomy scar
), and a medium description for clarity.
Use Cases:
Populating Procedure Resources: This API can be used to retrieve relevant procedure information, such as CPT codes and descriptions, for creating or updating Procedure resources in healthcare systems.
Standardizing Procedure Data: By using CPT codes, the API helps standardize procedural information across healthcare systems, ensuring consistent and accurate representation of medical procedures.
Supporting Clinical Documentation and Billing: Clinicians and healthcare applications can use this API to document procedures performed, ensuring the correct CPT codes are applied for clinical documentation, billing, and reimbursement purposes.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
resourceType | string | (Required) The type of resource to search for | |
searchString | string | (Required) The search string to use |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
x-source-id | string | (Required) The source ID to use | |
Authorization | string |
RESPONSES
status: OK
{"context":{"system":"\u003cstring\u003e","category":"\u003cstring\u003e"},"data":{"pagination":{"count":"\u003cinteger\u003e"},"result":[{"code":"\u003cstring\u003e","display":"\u003cstring\u003e","medium_description":"\u003cstring\u003e"},{"code":"\u003cstring\u003e","display":"\u003cstring\u003e","medium_description":"\u003cstring\u003e"}]}}