SupportDashboard
CPT coding API

Classify to CPT Codes

Send a procedure description and a k value to receive a ranked list of CPT codes.

POST
/cpt/code/

Query Parameters

k?K

The number of top codes to return. If None, returns all ranked codes.

textText

The description of the procedure

Response Body

curl -X POST "https://loading/cpt/code/?k=0" \  -H "Content-Type: application/json" \  -d '{    "text": "string"  }'
{
  "code": [
    "string"
  ]
}
Empty
Empty

How is this guide?