# Get all known locations for a specific provider Use this endpoint to retrieve every known practice location for a provider by NPI. Endpoint: GET /providers/{npi}/locations Version: 1.6.1 Security: bearerAuth ## Path parameters: - `npi` (string, required) Example: "1234567890" ## Response 200 fields (application/json): - `id` (string) Provider location identifier Example: "loc_001" - `address` (object) - `address.streetLine1` (string) Primary street address line Example: "123 Main St" - `address.streetLine2` (string,null) Secondary street address line (apartment, suite, etc.) Example: "Suite 200" - `address.streetLine3` (string,null) Tertiary street address line Example: "Rm 22" - `address.city` (string) City name Example: "New York" - `address.state` (string) State abbreviation Example: "NY" - `address.zip` (string) ZIP code Example: "10001" - `address.fullAddress` (string) Complete formatted address string Example: "123 Main St Suite 200, New York, NY 10001" - `address.latitude` (number,null) Latitude coordinate (optional) Example: 40.7128 - `address.longitude` (number,null) Longitude coordinate (optional) Example: -74.006 - `phoneNumbers` (array) Example: ["+14155552671"] - `faxNumbers` (array) Example: ["+14155552671"] - `website` (string,null) Example: "https://www.example.com" - `email` (string,null) Example: "contact@example.com" - `groupAffiliations` (array) Groups affiliated with this location Example: ["Community Health Center"] - `hospitalAffiliations` (array) Hospitals affiliated with this location Example: ["Rogue County Medical"] - `pcpEligible` (boolean) Whether the provider may be eligible for PCP designation at this location