# Get Intermodal Region Suggestions In drayage, an 'intermodal region' is a geographic area that functions as a hub for intermodal transportation, featuring ports and ramps. We divided North America into approximately 100 intermodal regions. This API request delivers a list of intermodal regions. Endpoint: GET /intermodalRegions/cities/{cityId}/suggestion Version: 1.0.0 Security: bearerAuth ## Response 200 fields (application/json): - `data` (array) - `data.id` (integer) A unique identifier for the intermodal region Example: 50 - `data.name` (string) The name of the intermodal region, typically including the city name and state abbreviation Example: "Albany - NY" - `data.city` (string) A detailed string that includes the city name, state abbreviation, and country Example: "Albany, NY, USA" - `data.latitude` (number) The geographic latitude of the intermodal region's central point Example: 42.914506 - `data.longitude` (number) The geographic longitude of the intermodal region's central point Example: -73.709122 - `data.has_ocean_port` (boolean) Indicates whether the intermodal region has access to an ocean port - `data.has_ramp_port` (boolean) Indicates whether the region includes a ramp port - `data.unlocodes` (array) A list of UN/LOCODEs associated with the intermodal region Example: ["USMHV"] ## Response 401 fields