Inspect availability across upcoming dates.
GET /v1/availability/calendar
Scope availability:read · Credits 4 · Plans All plans
Returns class-level availability, fares, probability, and alternate status for up to 30 days.
Send your key in the X-RailCore-Key header. This operation requires the availability:read scope. See the authentication guide.
| Name | In | Type | Required | Description |
|---|---|---|---|---|
train_number | query | string | Required | Train number, 4 to 6 uppercase letters or digits. |
from | query | string | Required | Boarding station code. |
to | query | string | Required | Destination station code. |
class | query | string | Required | Travel class code. |
quota | query | string | Optional | Reservation quota. |
days | query | integer | Optional | Number of calendar days. |
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 GET \
-H "X-RailCore-Key: $RAILCORE_KEY" \
"https://ir.railcore.tech/v1/availability/calendar?train_number=12656&from=BSL&to=ADI&class=3A"a=GN&days=7"
const response = await fetch("https://ir.railcore.tech/v1/availability/calendar?train_number=12656&from=BSL&to=ADI&class=3A"a=GN&days=7", {
method: "GET",
headers: {
"X-RailCore-Key": process.env.RAILCORE_KEY,
},
});
const body = await response.json();
console.log(response.status, body);
import os
import requests
response = requests.request(
"GET",
"https://ir.railcore.tech/v1/availability/calendar?train_number=12656&from=BSL&to=ADI&class=3A"a=GN&days=7",
headers={"X-RailCore-Key": os.environ["RAILCORE_KEY"]},
timeout=20,
)
print(response.status_code, response.json())
This call costs 4 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 |
|---|---|---|
train_number / from_station_code / to_station_code | string | Requested train and segment. |
class_code / quota | string | Applied class and quota. |
days[].date / day_of_week | string | Calendar date and running day. |
days[].status / availability_text | string | Normalized availability. |
days[].available_count / waitlist_count | integer | Availability counts. |
days[].fare | integer | null | Fare in INR. |
days[].confirmation_probability | object | null | Probability percentage, label, and text. |
days[].alternate | object | null | Alternate-day status, fare, and probability. |
days[].last_updated_at | string | null | Live source update time. |
{
"success": true,
"data": {
"train_number": "12656",
"from_station_code": "BSL",
"to_station_code": "ADI",
"class_code": "3A",
"quota": "GN",
"days": [
{
"date": "2026-08-27",
"day_of_week": "THU",
"status": "AVAILABLE",
"availability_text": "AVAILABLE 24",
"available_count": 24,
"waitlist_count": 0,
"fare": 1125,
"confirmation_probability": {
"percentage": 96,
"label": "HIGH"
},
"alternate": null
}
]
},
"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