Search for a train trip

POST /search

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

application/json

Body

Responses

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"
}
Response examples (200)
[
  {
    "id": "string",
    "departure_station": "string",
    "arrival_station": "string",
    "departure_at": "string",
    "arrival_at": "string",
    "cents": "string",
    "train_code": "string"
  }
]