Compare up to five route queries in one request.
POST /v1/journeys/compare
Scope journeys:read · Credits 5 flat · Plans All plans
Runs route searches in parallel and returns per-item results so one failed comparison does not discard successful ones.
Send your key in the X-RailCore-Key header. This operation requires the journeys:read scope. See the authentication guide.
This operation takes no path or query parameters.
| Field | Type | Description |
|---|---|---|
journeys | JourneyInput[] | Array with 1 to 5 journey objects. |
journeys[].from | string | Boarding station code. |
journeys[].to | string | Destination station code. |
journeys[].date | string(date) | Journey date. |
journeys[].quota | Quota | Optional reservation quota. |
Base URL https://ir.railcore.tech/v1. Keep the key in an environment variable and call from a trusted server-side environment.
curl -sS -X POST \
-H "X-RailCore-Key: $RAILCORE_KEY" \
-H "Content-Type: application/json" \
--data '{"journeys":[{"from":"BSL","to":"ADI","date":"2026-08-27","quota":"GN"},{"from":"NDLS","to":"BCT","date":"2026-08-28","quota":"TQ"}]}' \
"https://ir.railcore.tech/v1/journeys/compare"
const response = await fetch("https://ir.railcore.tech/v1/journeys/compare", {
method: "POST",
headers: {
"X-RailCore-Key": process.env.RAILCORE_KEY,
"Content-Type": "application/json",
},
body: JSON.stringify({
"journeys": [
{
"from": "BSL",
"to": "ADI",
"date": "2026-08-27",
"quota": "GN"
},
{
"from": "NDLS",
"to": "BCT",
"date": "2026-08-28",
"quota": "TQ"
}
]
}),
});
const body = await response.json();
console.log(response.status, body);
import json
import os
import requests
response = requests.request(
"POST",
"https://ir.railcore.tech/v1/journeys/compare",
headers={"X-RailCore-Key": os.environ["RAILCORE_KEY"]},
json=json.loads("{\"journeys\":[{\"from\":\"BSL\",\"to\":\"ADI\",\"date\":\"2026-08-27\",\"quota\":\"GN\"},{\"from\":\"NDLS\",\"to\":\"BCT\",\"date\":\"2026-08-28\",\"quota\":\"TQ\"}]}"),
timeout=20,
)
print(response.status_code, response.json())
This call costs 5 flat credits and is available on All plans. Per-minute and daily budgets, and the headers reporting remaining quota, are documented in rate limits and credits and billing.
| Field | Type | Description |
|---|---|---|
results[] | RouteTrains[] | One route result or inline per-item failure for each input. |
results[].from_station_code | string | Resolved origin. |
results[].to_station_code | string | Resolved destination. |
results[].journey_date | string(date) | Requested journey date. |
results[].quota | Quota | Applied reservation quota. |
results[].trains[].train_number | string | Train number. |
results[].trains[].train_name | string | Train name. |
results[].trains[].departure_time / arrival_time | string | Scheduled segment times in HH:mm. |
results[].trains[].duration_minutes | integer | Segment duration. |
results[].trains[].distance_km | number | null | Segment distance. |
results[].trains[].train_type | string | Normalized train type. |
results[].trains[].classes | ClassCode[] | Offered travel classes. |
results[].trains[].running_days | RunningDay[] | Weekly running pattern. |
results[].trains[].has_pantry | boolean | null | Pantry availability when known. |
results[].trains[].on_time_rating | number | null | Historical punctuality rating when available. |
results[].trains[].availability_summary | AvailabilityMini[] | Compact class-level status, fare, confidence, and update time. |
{
"success": true,
"data": {
"results": [
{
"from_station_code": "BSL",
"to_station_code": "ADI",
"journey_date": "2026-08-27",
"quota": "GN",
"trains": [
{
"train_number": "12656",
"train_name": "Navjeevan SF Express",
"departure_time": "10:25",
"arrival_time": "18:00",
"duration_minutes": 455,
"classes": [
"SL",
"3A",
"2A",
"1A"
],
"running_days": [
"MON",
"TUE",
"WED",
"THU",
"FRI",
"SAT",
"SUN"
]
}
]
}
]
},
"meta": {
"api_version": "v1",
"request_id": "req_01J5Z7Y8N2K4M6P8R0T2V4X6Z8",
"trace_id": "trc_01J5Z7Y8N2K4M6P8R0T2V4X6Z9",
"timestamp": "2026-08-20T17:12:23.305Z",
"freshness": {
"mode": "live",
"retrieved_at": "2026-08-20T17:12:23.305Z",
"sources": [
{
"confidence": "high"
}
]
}
}
}
| Status | Code | Description | Retry |
|---|---|---|---|
| 400 | VALIDATION_ERROR | A required field is missing or invalid. | Not retryable |
| 401 | MISSING_API_KEY / INVALID_API_KEY | The credential is absent, unknown, disabled, or expired. | Not retryable |
| 403 | SCOPE_MISSING / PLAN_ENDPOINT_DISABLED | The key lacks the required scope or plan entitlement. | Not retryable |
| 402 | CREDITS_EXHAUSTED | The account balance cannot cover this operation. | Not retryable |
| 429 | RATE_LIMITED | Minute or daily request budget is exhausted. Honor Retry-After. | Retryable |
| 410 | API_VERSION_SUNSET | This API version has reached its announced sunset date. Migrate to a supported major version. | Not retryable |
| 502 | UPSTREAM_UNAVAILABLE | Live data could not be retrieved. Retry with backoff. | Retryable |
| 504 | UPSTREAM_TIMEOUT | The live-data request exceeded its deadline. Retry with backoff. | Retryable |
| 503 | METERING_UNAVAILABLE | Credit settlement is temporarily unavailable and no data was returned. | Retryable |
All RailCore Indian Railways API endpoints · Quickstart · Rate limits