Skip to main content
GET
/
v2
/
stops
/
{id}
Get a stop by ID
curl --request GET \
  --url https://staging.api.prexsell.com/v2/stops/{id}
{
  "data": {
    "stop": {
      "id": "cst1a2b3c4d5e6f7g8h9",
      "place": "Центральний автовокзал",
      "type": "BUS_STATION",
      "latitude": 50.4501,
      "longitude": 30.5234,
      "city": {
        "id": "cld1a2b3c4d5e6f7g8h9i0j1",
        "name": "Київ",
        "slug": "kyiv",
        "country": "UA",
        "timeZone": "Europe/Kyiv"
      }
    }
  }
}

Path Parameters

id
string
required

Unique identifier of the stop.

Example:

"cst1a2b3c4d5e6f7g8h9"

Response

A single bus stop record with coordinates and an embedded city summary.

data
object
required