---
title: "View specific routes"
method: GET
path: "/bus/routes/{route_ids}"
tags: ["bus"]
---

# View specific routes

`GET /bus/routes/{route_ids}`

Get route data for one or more routes

## Path parameters

- `route_ids` string[], required

## Response `200`

Successful Operation

- object
  - `data` Route — Bus route
    - `route_id` string — A unique three digit route number
    - `title` string — String name of the route
    - `stops` Stop[] — Array of stops on the route
      - `stop_id` string — Unique string identifier for a stop, should be mostly human-readable
      - `title` string — Full name of the stop
      - `lat` number, float — Latitude
      - `long` number, float — Longitude
    - `directions` object[] — Array of directions the bus travels
      - `direction_id` string — Unique (relative to the route) string titling the direction
      - `title` string — String name of the direction
      - `stops` string[] — Names of stops along the route
    - `paths` array[] — Lat/Long points to draw the route on a map
      - object[]
        - `lat` number, float
        - `long` number, float
    - `lat_max` number, float
    - `lat_min` number, float
    - `long_max` number, float
    - `long_min` number, float
  - `count` number — Number of routes returned

## Other responses

- `400` — Malformed route code
- `404` — Unknown route code

---

[API](https://skmtc.net/umdio/apis/umd-io.md) · [All operations](https://skmtc.net/umdio/apis/umd-io/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/umdio/umd-io/versions/c0fac695dd04/schema)
