Search for a train trip

POST /search

Search for an available train trip between 2 stations, around a given departure date & time.

Body

  • departure_station string
  • destination_station string
  • departure_around string(date-time)

Responses

  • 200

    An array of available trips.

    Hide response attributes Show response attributes array[object]
    • id string
    • departure_station string
    • arrival_station string
    • departure_at string
    • arrival_at string
    • cents string
    • train_code string
POST /search
curl \
 -X POST http://api.mycompany.com/v1/trips/search \
 -H "Content-Type: application/json" \
 -d '{"departure_station":"string","destination_station":"string","departure_around":"2023-05-04T09:42:00+00:00"}'
Request example
{
  "departure_station": "string",
  "destination_station": "string",
  "departure_around": "2023-05-04T09:42:00+00:00"
}
Request examples
{
  "departure_station": "string",
  "destination_station": "string",
  "departure_around": "2025-05-04T09:42:00Z"
}
Response examples (200)
[
  {
    "id": "string",
    "departure_station": "string",
    "arrival_station": "string",
    "departure_at": "string",
    "arrival_at": "string",
    "cents": "string",
    "train_code": "string"
  }
]
Response examples (200)
[
  {
    "id": "string",
    "departure_station": "string",
    "arrival_station": "string",
    "departure_at": "string",
    "arrival_at": "string",
    "cents": "string",
    "train_code": "string"
  }
]