API specifications – Procedure Analysis

Comp Analytics API is structured around REST and specifically the POST method. The API accepts form-encoded request bodies and return JSON encoded responses. Standard HTTP response codes are returned.

Procedure Analysis

REQUEST

Endpoint: https://comp-analytics.com/compapp/feeschedule.php
Method: POST
Parameters:

hcpsstring
modstring
stateusedstring

RESPONSE

Returns JSON encoded dictionary (name = “feesched”) with the following values:

Localitystring
LocalityNamestring
HCPCSstring
MODIFIERstring
DESCRIPTIONstring
FeestringMedicare Fee Schedule Value
TXFacilitystringTX Fee Schedule Value for Facility
TXNonFacilitystringTX Fee Schedule Value

{
    "feesched": [ 
       {
            "Locality": "31",
            "LocalityName": "AUSTIN, TX",
            "HCPCS": "97110",
            "MODIFIER": "",
            "DESCRIPTION": "Therapeutic exercises",
            "Fee": "31.47",
            "TXFacility": "34.54", 
           "TXNonFacility": "27.52"
        },
        {
            "Locality": "20",
            "LocalityName": "BEAUMONT, TX",
            "HCPCS": "97110",
            "MODIFIER": "",
            "DESCRIPTION": "Therapeutic exercises",
            "Fee": "30.14",
            "TXFacility": "34.68",
            "TXNonFacility": "27.63"
        }
]
}