---
title: "Get the stop information for a specific route."
method: GET
path: "/api/stops/{route_id}"
tags: ["/api"]
---

# Get the stop information for a specific route.

`GET /api/stops/{route_id}`

Args:
    route_id: The route ID to look up stops for.

Returns:
    Response: JSON response containing station/stop data including names, IDs,
        and directions, or a 404 response if the route is not found.

## Response `200`

Success

- StopsResponse — Response for `/api/stops/{route_id}` — station/stop info for a route. Attributes: type: Route type (e.g., `rapid_transit`, `bus`, `commuter_rail`). direction: Map of direction ID to direction name (e.g., `{"0": "Southbound"}`). stations: Ordered list of stations/stops along the route. service_start: Service start date, if applicable. service_end: Service end date, if applicable.
  - `type` string, required
  - `direction` object, required
  - `stations` StationStop[], required
    - `stop_name` string, required
    - `branches` string[], required
    - `station` string, required
    - `order` integer, required
    - `stops` object, required
    - `accessible` boolean
    - `pedal_park` boolean
    - `enclosed_bike_parking` boolean
    - `terminus` boolean
    - `disabled` boolean
    - `short` string
  - `service_start` string
  - `service_end` string

---

[API](https://skmtc.net/transitmatters/apis/data-dashboard-api.md) · [All operations](https://skmtc.net/transitmatters/apis/data-dashboard-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/transitmatters/data-dashboard-api/versions/4bc220e599eb/schema)
