Download OpenAPI specification:
Wsdot Bridge Clearances API - Washington State Department of Transportation APIs
import { fetchBridgeClearances } from 'ws-dottie/wsdot-bridge-clearances/core'; const data = await fetchBridgeClearances({ fetchMode: 'native', validate: true }); console.log(data);
Example of a successful response from the API (showing first item of 2992 total)
[- {
- "APILastUpdate": "2025-11-14T11:30:02.387Z",
- "BridgeNumber": "519/101FTP",
- "ControlEntityGuid": "e589eb93-c01b-4498-8243-89f48bf5c43d",
- "CrossingDescription": "SEATTLE SLIP 1 PASS. OHL",
- "CrossingLocationId": 9603,
- "CrossingRecordGuid": "3d78286b-a191-4978-9382-9f914341d6b0",
- "InventoryDirection": null,
- "Latitude": 47.602165,
- "LocationGuid": "dcf13720-32a4-40e3-b824-663775ab2bbc",
- "Longitude": -122.339587,
- "RouteDate": "2016-12-31T08:00:00.000Z",
- "SRMP": 0,
- "SRMPAheadBackIndicator": null,
- "StateRouteID": null,
- "StateStructureId": "0014407A",
- "VerticalClearanceMaximumFeetInch": "14 ft 3 in",
- "VerticalClearanceMaximumInches": 171,
- "VerticalClearanceMinimumFeetInch": "14 ft 3 in",
- "VerticalClearanceMinimumInches": 171
}
]import { fetchBridgeClearancesByRoute } from 'ws-dottie/wsdot-bridge-clearances/core'; const data = await fetchBridgeClearancesByRoute({ params: { "Route": "005" }, fetchMode: 'native', validate: true }); console.log(data);
Example of a successful response from the API (showing first item of 972 total)
[- {
- "APILastUpdate": "2025-11-14T11:30:02.387Z",
- "BridgeNumber": "5/629A",
- "ControlEntityGuid": "88ba5341-b39c-43c9-95a5-bc9584b2d798",
- "CrossingDescription": "I-5 S-S RAMP UNDER BROADWAY",
- "CrossingLocationId": 6192,
- "CrossingRecordGuid": "9b764b55-9fc1-4448-8b0b-3f35b83d6f5f",
- "InventoryDirection": "I",
- "Latitude": 47.961343,
- "LocationGuid": "dad9f2c9-ae79-4efb-8f3e-587e402e0f80",
- "Longitude": -122.200516,
- "RouteDate": "2016-12-31T08:00:00.000Z",
- "SRMP": 0,
- "SRMPAheadBackIndicator": "A",
- "StateRouteID": "005S119195",
- "StateStructureId": "0003842B",
- "VerticalClearanceMaximumFeetInch": "14 ft 5 in",
- "VerticalClearanceMaximumInches": 173,
- "VerticalClearanceMinimumFeetInch": "14 ft 1 in",
- "VerticalClearanceMinimumInches": 169
}
]