What does a typical “get an existing Price document” request and response look like?

If you successfully received and want to get details of that Price document again, you can use the get Price by ID endpoint URL below:

https://sandbox.apis.changehealthcare.com/dxp/carecostpricing/v1/id

An example of a typical response of “Get existing Price document” is listed below. This example uses the price document id , "c8ed6c13-63e9-4f4f-9e95-a7e81db57714". The get request will work if the price is not expired. by default, the price document will expire in 24 hours. This can be configured per your request. Please contact your Change Healthcare representative to request the change.

{
    "id": "c8ed6c13-63e9-4f4f-9e95-a7e81db57714",
    "createdDate": "2022-07-15T08:30:12.266289Z",
    "expirationDate": "2022-07-16T08:30:12.266289Z",
    "careCostScore": 100,
    "results": [
        {
            "procedures": [
                {
                    "name": "THYROID IMAGING W/BLOOD FLOW AND UPTAKE",
                    "description": null,
                    "codes": [
                        {
                            "code": [
                                "78014"
                            ],
                            "type": "cpt",
                            "modifier": null,
                            "revenue": null
                        }
                    ],
                    "type": "primary",
                    "price": {
                        "negotiated": 800.0,
                        "min": 100.0,
                        "max": 1600.0
                    }
                }
            ],
            "provider": {
                "name": "MARGARETVILLE MEMORIAL HOSPITAL",
                "npi": "1164473039"
            },
            "payer": {
                "name": "AETNA",
                "plan": "1199 / ASA"
            },
            "serviceTypeCodes": []
        }
    ]
}