Search stations

Find stations by code, city, name, or alias.

GET /v1/stations/search

Scope stations:read · Credits 1 · Plans All plans

Searches the RailCore reference index and returns ranked canonical station records suitable for autocomplete and station resolution.

Authentication

Send your key in the X-RailCore-Key header. This operation requires the stations:read scope. See the authentication guide.

Request parameters

NameInTypeRequiredDescription
qquerystringRequiredSearch text, station code, city, or alias. 1 to 80 characters.
limitqueryintegerOptionalMaximum results.

Code examples

Base URL https://ir.railcore.tech/v1. Keep the key in an environment variable and call from a trusted server-side environment.

cURL

curl -sS -X GET \
  -H "X-RailCore-Key: $RAILCORE_KEY" \
  "https://ir.railcore.tech/v1/stations/search?q=bhusaval&limit=5"

JavaScript

const response = await fetch("https://ir.railcore.tech/v1/stations/search?q=bhusaval&limit=5", {
  method: "GET",
  headers: {
    "X-RailCore-Key": process.env.RAILCORE_KEY,
  },
});

const body = await response.json();
console.log(response.status, body);

Python

import os
import requests

response = requests.request(
    "GET",
    "https://ir.railcore.tech/v1/stations/search?q=bhusaval&limit=5",
    headers={"X-RailCore-Key": os.environ["RAILCORE_KEY"]},
    timeout=20,
)
print(response.status_code, response.json())

Rate limits and credits

This call costs 1 credit 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.

Response fields

FieldTypeDescription
querystringNormalized query.
limitintegerApplied result limit.
results[]Station[]Ranked station records.
results[].station_codestringCanonical station code.
results[].station_namestringCanonical station name.
results[].display_namestringName formatted for user interfaces.
results[].citystring | nullAssociated city when available.
results[].statestring | nullIndian state or union territory when available.
results[].countrystringISO country code, normally IN.
results[].latitudenumber | nullWGS84 latitude.
results[].longitudenumber | nullWGS84 longitude.
results[].aliasesstring[]Known alternate names and codes.
results[].is_majorbooleanWhether the station is considered a major junction or hub.
results[].confidencenumberMatch confidence from 0 to 1.

Example response

{
  "success": true,
  "data": {
    "query": "bhusaval",
    "limit": 5,
    "results": [
      {
        "station_code": "BSL",
        "station_name": "Bhusaval Jn",
        "display_name": "Bhusaval Jn",
        "city": "Bhusawal",
        "state": "Maharashtra",
        "country": "IN",
        "latitude": 21.048194,
        "longitude": 75.788607,
        "aliases": [
          "Bhusaval Junction"
        ],
        "is_major": true,
        "confidence": 0.98
      }
    ]
  },
  "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"
        }
      ]
    }
  }
}

Errors

StatusCodeDescriptionRetry
400VALIDATION_ERRORA required field is missing or invalid.Not retryable
401MISSING_API_KEY / INVALID_API_KEYThe credential is absent, unknown, disabled, or expired.Not retryable
403SCOPE_MISSING / PLAN_ENDPOINT_DISABLEDThe key lacks the required scope or plan entitlement.Not retryable
402CREDITS_EXHAUSTEDThe account balance cannot cover this operation.Not retryable
429RATE_LIMITEDMinute or daily request budget is exhausted. Honor Retry-After.Retryable
410API_VERSION_SUNSETThis API version has reached its announced sunset date. Migrate to a supported major version.Not retryable
502UPSTREAM_UNAVAILABLELive data could not be retrieved. Retry with backoff.Retryable
504UPSTREAM_TIMEOUTThe live-data request exceeded its deadline. Retry with backoff.Retryable
503METERING_UNAVAILABLECredit settlement is temporarily unavailable and no data was returned.Retryable

Related Stations endpoints

All RailCore Indian Railways API endpoints · Quickstart · Rate limits