Bart integration
BART (Bay Area Rapid Transit) provides public transportation services in the…
- Provider
- bart
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 20 available
Quick start
Call Bart from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Bart's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"BART_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Bart API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
20 actions exposed via the
Bart integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BART_GET_API_VERSION -
BART_GET_AVAILABLE_SCHEDULES -
BART_GET_ELEVATOR_STATUS -
BART_GET_ESTIMATED_DEPARTURES -
BART_GET_FARE -
BART_GET_GTFS_ALERTS -
BART_GET_GTFS_RT_TRIP_UPDATES -
BART_GET_GTFS_STATIC_SCHEDULE_FEED -
BART_GET_ROUTE_INFO -
BART_GET_ROUTE_SCHEDULE -
BART_GET_SCHEDULE_ARRIVE -
BART_GET_SCHEDULE_DEPART
Show all 20 actions
-
BART_GET_SERVICE_ADVISORIES -
BART_GET_SPECIAL_SCHEDULES -
BART_GET_STATION_ACCESS -
BART_GET_STATION_INFO -
BART_GET_STATIONS -
BART_GET_STATION_SCHEDULE -
BART_GET_TRAIN_COUNT -
BART_LIST_ROUTES
Build with Bart
Open OverSkill, describe what you want to build, and reference Bart in your prompt — the AI will wire up the integration automatically.