Download OpenAPI specification:
Wsdot Border Crossings API - Washington State Department of Transportation APIs
Current wait times for Washington border crossings into Canada by crossing and lane type.
import { fetchBorderCrossings } from 'ws-dottie/wsdot-border-crossings/core'; const data = await fetchBorderCrossings({ fetchMode: 'native', validate: true }); console.log(data);
Example of a successful response from the API (showing first item of 11 total)
[- {
- "BorderCrossingLocation": {
- "Description": "I-5 General Purpose",
- "Direction": null,
- "Latitude": 49.004776,
- "Longitude": -122.756964,
- "MilePost": 0,
- "RoadName": "005"
}, - "CrossingName": "I5",
- "Time": "2025-11-15T17:40:00.000Z",
- "WaitTime": 5
}
]