# [EXPERIMENTAL] Get Home Base Get a single HomeBase. Endpoint: GET /home-base/{business_id} Version: 1.27.2 Security: clientCredentials ## Path parameters: - `business_id` (string, required) A unique identifier of an entity instance. Should only contain characters which do not need URL encoding. ## Response 200 fields (application/json): - `business_id` (string) Example: "HB-GHENT-01" - `name` (string) Name of the home base Example: "Ghent - Headquarters" - `address` (object) Either address information should be present, or otherwise the geo point. The resolved information will be read only and be filled out after resolving. - `address.address_line` (string) The address line of this location's address. Can contain street, house number, bus and more. Example: "Voordries 41b" - `address.city` (string) The name of the locality of this location. Required when no geo_point is provided. Example: "Oosterzele" - `address.zip_code` (string) The ZIP code of the locality of this location. Required when no geo_point is provided. Example: "9860" - `address.country_code` (string) The ISO3166-1 alpha-2 two letter country code for this location. Required when no geo_point is provided. - `address.geo_point` (object) - `address.geo_point.latitude` (number, required) Example: 50.9514048 - `address.geo_point.longitude` (number, required) Example: 3.8067878 - `address.geo_point.resolved` (object) Indicates whether the address is resolved. - `address.geo_point.resolved.geocoded` (boolean) Example: true - `address.geo_point.resolved.address` (string) Example: "Voordries 31 bus B, 9860 Oosterzele" - `address.geo_point.resolved.precision` (integer) Example: 9 - `plan_group` (string) the plan group to which this HomeBase belongs Example: "cargo planning" ## Response 400 fields (application/problem+json): - `title` (string) A short, summary of the problem. Example: "Validation exception" - `detail` (string) A detailed explanation specific to this problem. Example: "The field contains invalid business formatting." - `violations` (array) - `violations.field` (string) Example: "path.to.field" - `violations.message` (string) Example: "Field is required" ## Response 404 fields (application/problem+json): - `title` (string) A short, summary of the problem. Example: "Validation exception" - `detail` (string) A detailed explanation specific to this problem. Example: "The field contains invalid business formatting." ## Response 401 fields