Logo

Custom Pharmacy Search

POST

https://staging-api.qualiphy.me/api/custom_pharmacy_search
This endpoint is used to search for any custom pharmacy in the US based on search criteria such as State, City, Pharmacy name, or Zip code. This allows clinics and patients to find the pharmacy of their choice.

Parameters
  • api_key string

    Required

    API key for authentication

  • city string

    Optional

    City

  • state string

    Optional

    State (capital abbreviation)

  • zip_code string

    Optional

    ZIP code

  • pharmacy_name string

    Optional

    Name or partial name of the pharmacy you are looking for.

    You can enter the name or partial name of the pharmacy you are looking for. You can use the Partner Pharmacy List API to get pharmacy_name.


Response

200
400
401

Response Fields Explanation

FieldExplanation
NCPDPIDThis is the unique ID associated with each custom pharmacy
NameThis is the public name of the custom pharmacy
AddressThis is the address of the pharmacy
Address2This is the address line 2 of the pharmacy (if applicable)
CityThis is the city of the pharmacy
ZipThis is the Zip code of the pharmacy
PhoneThis is the phone number on file for the pharmacy
TypeThis is the pharmacy type (compound, retail, etc.)

Example Request Payload:

Response Example

{
"http_code":200
"data":[
0:{
"NCPDPID":"2977784"
"Name":"CVS 16079 IN TARGET"
"Address":"4001 S MARYLAND PKWY"
"Address2":""
"City":"LAS VEGAS"
"State":"NV"
"Zip":"89119"
"Phone":"(702) 732-1840"
"Type":"Retail"
}
]
}