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:
hcps | string |
mod | string |
stateused | string |
RESPONSE
Returns JSON encoded dictionary (name = “feesched”) with the following values:
Locality | string | |
LocalityName | string | |
HCPCS | string | |
MODIFIER | string | |
DESCRIPTION | string | |
Fee | string | Medicare Fee Schedule Value |
TXFacility | string | TX Fee Schedule Value for Facility |
TXNonFacility | string | TX 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" } ] }