# Get Location Information Get list of locations optionally filtered by zip code. \ Note: Only German locations are currently supported. Endpoint: GET /countries/de/locations Version: 2.0.0 Security: oAuth, bearerAuth ## Query parameters: - `zip_code` (string) Get locations matching the given zip code. Example: 12683 - `zip_codes` (string) Get locations matching the given comma separated zip codes. Example: "12683,78267" - `limit` (integer) ## Response 200 fields (application/json): - `locations` (array) - `locations.name` (string) Example: "Biesdorf" - `locations.zip_code` (integer) Example: 12683 - `locations.state` (string) Example: "Berlin" - `links` (object) - `links.first` (string) - `links.prev` (string) - `links.next` (string) - `links.last` (string) - `meta` (object) - `meta.per_page` (number) - `meta.current_page` (number) - `meta.from` (number) - `meta.to` (number) - `meta.total` (number) - `meta.last_page` (number) - `meta.path` (string) - `requestid` (string) Unique Request ID identifying this request. - `responsetime` (number) Time taken to generate response. ## Response 401 fields