# Get facility details **GET /api/facilities/{id}** Allows you to retrieve the details of a facility you have access to, given its ID. ## Servers - http://localhost:4000: http://localhost:4000 () ## Authentication methods - Api key ## Parameters ### Path parameters - **id** (string) The ID of the facility to retrieve ## Responses ### 200 OK #### Body: application/json (object) - **account_id** (string) Id of the account the facility belongs to - **account_name** (string) Name of the account the facility belongs to - **address_line_1** (string) First line of the facility address - **address_line_2** (string) Second line of the facility address - **city** (string) City where the facility is located - **climate_control** (string) The type of climate control the facility has. Can be one of 'both', 'heated_only', 'cooled_only', or 'none' - **distributor_id** (string) Id of the distributor the facility belongs to - **distributor_name** (string) Name of the distributor the facility belongs to - **id** (string) ID of the facility in the system - **latitude** (number) The facility latitude - **longitude** (number) The facility longitude - **name** (string) Name of the facility - **region_id** (string) ID of the region the facility belongs to - **region_name** (string) Name of the region the facility belongs to - **square_ft** (number) The square footage of the facility - **state** (string) State where the facility is located - **status** (string) Status of the facility. - **store_number** (string) Identifier of the facility - **type** (string) The type of facility. One of auto_body_shop, manufacturing_plant, or auto_dealership - **tz** (string) The timezone of the facility as a IANA TZ identifier string - **working_hours** (array[object]) List of facility schedules for the week - **zipcode** (string) Zip code of the facility ### 401 Unauthorized #### Body: application/json (object) - **error** (string) Human readable version of the error status code ### 404 Not found #### Body: application/json (object) - **error** (string) Human readable version of the error status code [Powered by Bump.sh](https://bump.sh)