Skip to main content
GET
/
billing-codes
/
{id}
cURL
curl --request GET \
  --url https://app.opencharges.com/api/v1/billing-codes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<unknown>",
  "code_type": "<string>",
  "code": "<string>",
  "version": "<string>",
  "short_description": "<string>",
  "medium_description": "<string>",
  "long_description": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

Billing Code response

id
int

The id for the Billing Code

code_type
string

The billing code type, such as MS-DRG, etc.

code
string

The billing code, for example 80061 for a lipid panel

version
string

The billing code version, for example, using MS-DRGs, we can have version 42

short_description
string | null

If the billing code has a short_description, it will use this field.

medium_description
string | null

If the billing code has a medium_description, it will use this field.

long_description
string | null

If the billing code has a long_description, it will use this field.