Retrieve CPT

Retrieves the details of a specific CPT code.

Request

GET /clinical/v1/cpt/:code

Path Parameters


code string : required

The CPT code to be fetched.


Query Parameters


No parameters

Example


curl -XGET 'https://platform.wellviasolutions.com/clinical/v1/cpt/{cptcode}' \
    -u 'Bearer:{your_token}'
GET https://platform.wellviasolutions.com/clinical/v1/cpt/{cptcode} HTTP/1.1
using WellViaSDK.Clinical;

const string apiSubscriptionKey = "your_api_subscription_key";
var _clnClient = new WellViaClinicalServiceClient(subscriptionKey: apiSubscriptionKey);

string cptCode = "{cptcode}";
var cc = await _clnClient.GetCPTCodeAsync(id: cptCode);

Response

A CPT Object if a valid identifier was provided.