Current Active Requests: Drugs
Welcome to the Claim section of Current Active Requests. Below are options for claim history and submission of raw of NCPDP. These sections will include descriptors of both, as well as sample requests/parameters for each.
Drug Request Get
Drug Request provides basic name search functionality to retrieve all products that begin with the Drug Name provided on the request.
Sample Request / Parameters
/DrugRequest?name=nafcillin s
curl --location --request GET 'https://clientapi.test.ad.rxlogic.com/DrugRequest?name=nafcillin%20s'
Name is the only parameter available for this API and is case insensitive. A sample response is seen below.
[
{
"NdcUpcHri": "00409371301",
"ProdDescAbbrev": "Nafcillin Sodium 1 GM",
"ProdName": "Nafcillin Sodium"
},
{
"NdcUpcHri": "00781312695",
"ProdDescAbbrev": "Nafcillin Sodium 10 GM",
"ProdName": "Nafcillin Sodium"
},
{
"NdcUpcHri": "00781912646",
"ProdDescAbbrev": "Nafcillin Sodium 10 GM",
"ProdName": "Nafcillin Sodium"
},
{
"NdcUpcHri": "63323033060",
"ProdDescAbbrev": "Nafcillin Sodium 10 GM",
"ProdName": "Nafcillin Sodium"
}
]
/* Enter your code */
Drug Data Get
Drug Data provides name search functionality with more robust results. Data is also filtered to exclude repackaged drugs, inactive drugs, clinic pack drugs, and any drug with an AWP of 0.
Sample Request / Parameters
/DrugData?name=Ozempic
curl -X GET --header 'Accept: application/json' --header 'apiKey: 11111111-1111-1111-1111-111111111111' 'https://clientapi.dev.rxlogic.com/DrugData?name=Ozempic'
Name is the only parameter available for this API and is case insensitive. A sample response is seen below.
[
{
"UniqueId": "6e26b39a-ad89-42f5-bac4-c72d3db15e7e",
"Ndc": "00169413211",
"Kdc": "3900001001",
"Gpi": "2717007000D210",
"MedDrugName": "Ozempic (0.25 or 0.5 MG/DOSE)",
"MedStrength": "2",
"Uom": "MG/1.5ML",
"PackageQuantity": 1,
"MedPackSize": 1.500,
"PackageSizeUom": "ML",
"DosageForm": "SOPN",
"MultiSourceCode": "N",
"NameTypeCode": "T",
"BrandNameCode": "T",
"SourceCode": "P",
"IsBrand": true,
"ControlledSubstanceCode": null,
"AWP": 681.280000
},
{
"UniqueId": "8524e1ce-884b-46d8-9a94-952bdb0a2b14",
"Ndc": "00169413212",
"Kdc": "3900001001",
"Gpi": "2717007000D210",
"MedDrugName": "Ozempic (0.25 or 0.5 MG/DOSE)",
"MedStrength": "2",
"Uom": "MG/1.5ML",
"PackageQuantity": 1,
"MedPackSize": 1.500,
"PackageSizeUom": "ML",
"DosageForm": "SOPN",
"MultiSourceCode": "N",
"NameTypeCode": "T",
"BrandNameCode": "T",
"SourceCode": "P",
"IsBrand": true,
"ControlledSubstanceCode": null,
"AWP": 681.280000
},
{
"UniqueId": "aed8155e-3b0e-4771-89f7-6edf48ce0314",
"Ndc": "00169413602",
"Kdc": "3900001001",
"Gpi": "2717007000D220",
"MedDrugName": "Ozempic (1 MG/DOSE)",
"MedStrength": "2",
"Uom": "MG/1.5ML",
"PackageQuantity": 2,
"MedPackSize": 1.500,
"PackageSizeUom": "ML",
"DosageForm": "SOPN",
"MultiSourceCode": "N",
"NameTypeCode": "T",
"BrandNameCode": "T",
"SourceCode": "P",
"IsBrand": true,
"ControlledSubstanceCode": null,
"AWP": 340.640000
},
{
"UniqueId": "9394b075-e283-43a6-87dd-f639e76b9b16",
"Ndc": "00169413611",
"Kdc": "3900001001",
"Gpi": "2717007000D220",
"MedDrugName": "Ozempic (1 MG/DOSE)",
"MedStrength": "2",
"Uom": "MG/1.5ML",
"PackageQuantity": 1,
"MedPackSize": 1.500,
"PackageSizeUom": "ML",
"DosageForm": "SOPN",
"MultiSourceCode": "N",
"NameTypeCode": "T",
"BrandNameCode": "T",
"SourceCode": "P",
"IsBrand": true,
"ControlledSubstanceCode": null,
"AWP": 340.640000
}
]
/* Enter your code */