Overview
The BC Ferries API is a free, open API providing real-time sailing schedules, capacity, and current conditions for BC Ferries routes in British Columbia, Canada. No authentication is required, making it one of the easiest transportation APIs to start using immediately. It is ideal for building travel planners or commute tools for the BC coastal region.
Beginner Tip
Routes are identified by a departure terminal code and a destination terminal code such as TSA for Tsawwassen and SWB for Swartz Bay. Check the API documentation for the full list of terminal codes before making your first request.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://bcferriesapi.ca/api/
- Result
- HTTP 200 · application/json · 19,626 bytes
- Response time
- 147 ms (median of 3) · fastest 144 ms
- Transport
- TLSv1.3 · TLS_AES_256_GCM_SHA384 · certificate issued by Let's Encrypt
- Browser CORS
- Allowed — Access-Control-Allow-Origin: *
- Served by
- nginx/1.24.0 (Ubuntu)
- Recorded
- 2026-08-10
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Captured Response
Captured from a real request to https://bcferriesapi.ca/api/ on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
{
"BOW": {
"HSB": {
"sailingDuration": "0h 20m",
"sailings": [
{
"…": "(8 more fields)"
}
]
}
},
"DUK": {
"TSA": {
"sailingDuration": "2h 0m",
"sailings": [
{
"…": "(8 more fields)"
}
]
}
},
"FUL": {
"SWB": {
"sailingDuration": "00:35",
"sailings": [
{
"…": "(8 more fields)"
}
]
}
},
"HSB": {
"BOW": {
"sailingDuration": "0h 20m",
"sailings": [
{
"…": "(8 more fields)"
}
]
},
"LNG": {
"sailingDuration": "0h 42m",
"sailings": [
{
"…": "(8 more fields)"
}
]
}
},
"LNG": {
"HSB": {
"sailingDuration": "0h 40m",
"sailings": [
{
"…": "(8 more fields)"
}
]
}
},
"NAN": {
"HSB": {
"sailingDuration": "1h 42m",
"sailings": [
{
"…": "(8 more fields)"
}
]
}
},
"SWB": {
"FUL": {
"sailingDuration": "0h 35m",
"sailings": [
{
"…": "(8 more fields)"
}
]
},
"SGI": {
"sailingDuration": "0h 42m",
"sailings": [
{
"…": "(8 more fields)"
}
]
},
"TSA": {
"sailingDuration": "1h 35m",
"sailings": [
… Field Reference
sailings List of scheduled sailings for the requested route. Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://www.bcferriesapi.ca/v2/capacity/TSA/SWB/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Aug 10, 2026
Technical Specifications
Related Tags
Similar APIs
View All →ADS-B Exchange
⭐ Beginner's PickADS-B Exchange is a community-driven API that provides real-time and historical position data for aircraft around the world.
airportsapi
⭐ Beginner's PickThe airportsapi lets you look up airport names and official website URLs by providing an ICAO code.
Community Transit
⭐ Beginner's PickCommunity Transit (Transitland) is a free, open API that aggregates public transit data from hundreds of agencies worldwide including routes, stops, and schedules.
Icelandic APIs
⭐ Beginner's PickThe Icelandic APIs project (apis.is) provides a collection of free, open APIs exposing various Icelandic public data including flights, currency rates, and public transportation.
Transport for Sweden
Transport for Sweden (Trafiklab) is a developer platform providing access to public transport data across all of Sweden.