POST api/ListASPByPackage

Returns the Centers for Medicare and Medicade Services (CMS) price--Average Sale Price (ASP) and Not Otherwise Classified (NOC)--and the Healthcare Common Procedure Coding System (HCPCS) information grouped by package for the input drug identifier.


Request Information

URI Parameters

None.

Body Parameters

ListASPByPackageRequest
NameDescriptionTypeAdditional information
DrugId The drug identifier to retrieve the CMS price (ASP and/or NOC) and HCPCS information for. ADRDrugIdentifier

Required

MaxResults Limits the number of results returned. A null value means no limit, and everthing will be returned. integer

None.

AccessToken Temporary access token from the GSDD Auth API. Used to validate your license.

Note: Access tokens are temporary and may be invalidated early for various reasons, including—but not limited to—site maintenance and security updates. If a token is invalidated prematurely, simply request new tokens via the AccessToken method in the GSDD Auth API. This is a rather rare occurrence, but should be planned for and handled by the consuming application.
string

Required

Request Formats

application/json, text/json

Sample:
{
  "DrugId": {
    "IdType": "NDC11",
    "Id": "12345-6789-01"
  },
  "MaxResults": 10,
  "AccessToken": "T25lX0hhcHB5X0FuZF9TYXRpc2ZpZWRfR1NERF9DdXN0b21lcl9TYW1wbGVfQWNjZXNzVG9rZW4="
}

Response Information

Resource Description

ListASPByPackageResponse
NameDescriptionTypeAdditional information
ASPInfo A collection of ASP and NOC price (and HCPCS) information grouped by package. Collection of PackageASPInfo

None.

Message Message text if applicable. string

None.

Response Formats

application/json, text/json

Sample:
{
  "ASPInfo": [
    {
      "PackageID": 1,
      "PaymentLimit": 1.234,
      "Source": "ASP",
      "HCPCSCode": "Sample HCPCSCode text.",
      "EffectiveDate": "2024-05-18",
      "Dosage": "Sample Dosage text.",
      "PackageSize": 1.234,
      "PackageQuantity": 1.234,
      "BillingUnits": 1.234,
      "BillingUnitsPackage": 1.234
    },
    {
      "PackageID": 2,
      "PaymentLimit": 1.234,
      "Source": "ASP",
      "HCPCSCode": "Sample HCPCSCode text.",
      "EffectiveDate": "2024-05-18",
      "Dosage": "Sample Dosage text.",
      "PackageSize": 1.234,
      "PackageQuantity": 1.234,
      "BillingUnits": 1.234,
      "BillingUnitsPackage": 1.234
    }
  ],
  "Message": "Sample Message text."
}