Please note: Rail Delivery Group plans to retire the National Rail Data Portal (including OpenLDBWS) in early 2026. Alternatives are now available via the Rail Data Marketplace
<!DOCTYPE html>
<html lang="en">
<head>
<style type='text/css'>
body {
font-family: monospace;
white-space: nowrap;
}
table {
border-collapse: collapse;
}
th,td {
border: 1px solid #eee;
padding: 10px;
vertical-align:top;
}
th:nth-child(1),th:nth-child(2) {
text-align: left;
}
th:nth-child(3),td:nth-child(3) {
text-align: center;
}
th:nth-child(4),td:nth-child(4) {
text-align: right;
}
</style>
</head>
<body>
<?php
require("OpenLDBWS.php");
$OpenLDBWS = new OpenLDBWS("YOUR_ACCESS_TOKEN");
$response = $OpenLDBWS->GetDepBoardWithDetails(10,"GTW");
$template["header"] = "
<table>
<thead>
<tr>
<th>Time</th>
<th>Destination</th>
<th>Platform</th>
<th>Expected</th>
</tr>
</thead>
<tbody>
";
$template["row"] = "
<tr>
<td>{std}</td>
<td><strong>{destination}</strong>{detail}</td>
<td>{platform}</td>
<td>{etd}</td>
</tr>
";
$template["footer"] = "
</tbody>
</table>
";
if (isset($response->GetStationBoardResult))
{
print "<p><strong>".$response->GetStationBoardResult->locationName."</strong> Departures</p>";
if (isset($response->GetStationBoardResult->nrccMessages))
{
print "<ul>";
foreach($response->GetStationBoardResult->nrccMessages->message as $message)
{
print "<li>".$message->{"_"}."</li>";
}
print "</ul>";
}
if (isset($response->GetStationBoardResult->trainServices->service))
{
print $template["header"];
foreach($response->GetStationBoardResult->trainServices->service as $service)
{
$row = $template["row"];
$destinations = array();
foreach($service->destination->location as $location)
{
$destinations[] = $location->locationName;
}
$row = str_replace("{std}",$service->std,$row);
$row = str_replace("{destination}",implode(" and ",$destinations),$row);
$row = str_replace("{platform}",(isset($service->platform)?$service->platform:" "),$row);
$row = str_replace("{etd}",$service->etd,$row);
$detail = "";
if (($service->etd != "Cancelled") && isset($service->subsequentCallingPoints))
{
foreach($service->subsequentCallingPoints->callingPointList as $k => $callingPointList)
{
$callingPoints = $callingPointList->callingPoint;
if ($k)
{
$callingPoint = array_shift($callingPoints);
$detail .= "<p>Train divides at <strong>".$callingPoint->locationName."</strong></p>";
}
$detail .= "<p>CALLING AT:</p>";
foreach($callingPoints as $callingPoint)
{
$detail .= $callingPoint->locationName." (".(($callingPoint->st == "On time")?$callingPoint->et:$callingPoint->st).")<br />";
}
}
$detail .= "<p>".$service->operator.(isset($service->length)?" (".$service->length." coaches)":"")."</p>";
}
$row = str_replace("{detail}",$detail,$row);
print $row;
}
print $template["footer"];
}
else
{
print "<p>No services within 2 hours.</p>";
}
}
?>
</body>
</html>
Gatwick Airport Departures
No trains between London St Pancras International and Bedford this weekend. Latest information can be found in Status and Disruptions.
| Time | Destination | Platform | Expected |
|---|---|---|---|
| 22:54 | Horsham CALLING AT: Three Bridges (22:58)Crawley (23:02) Horsham (23:11) Southern (4 coaches) |
3 | On time |
| 22:59 | London Victoria CALLING AT: East Croydon (23:14)Clapham Junction (23:24) London Victoria (23:32) Southern (8 coaches) |
4 | On time |
| 23:02 | Brighton CALLING AT: Three Bridges (23:06)Haywards Heath (23:17) Burgess Hill (23:22) Hassocks (23:26) Brighton (23:37) Southern (8 coaches) |
6 | 23:05 |
| 23:05 | Reading CALLING AT: Redhill (23:13)Reigate (23:20) Betchworth (23:25) Dorking Deepdene (23:29) Dorking West (23:32) Gomshall (23:40) Chilworth (23:46) Shalford (23:50) Guildford (23:55) Ash (00:05) North Camp (00:09) Farnborough North (00:13) Blackwater (00:17) Sandhurst (00:21) Crowthorne (00:25) Wokingham (00:30) Reading (00:40) Great Western Railway |
1 | On time |
| 23:06 | London Bridge CALLING AT: East Croydon (23:21)London Bridge (23:35) Thameslink (12 coaches) |
4 | On time |
| 23:08 | Brighton CALLING AT: Three Bridges (23:12)Balcombe (23:19) Haywards Heath (23:24) Wivelsfield (23:29) Burgess Hill (23:31) Hassocks (23:35) Preston Park (23:41) Brighton (23:45) Thameslink (12 coaches) |
7 | On time |
| 23:12 | London Victoria CALLING AT: London Victoria (23:42)Gatwick Express (8 coaches) |
5 | On time |
| 23:15 | Bognor Regis CALLING AT: Three Bridges (23:20)Ford (00:09) Barnham (00:13) Bognor Regis (00:20) Southern (8 coaches) |
3 | On time |
| 23:16 | London Victoria CALLING AT: East Croydon (23:30)Clapham Junction (23:40) London Victoria (23:47) Southern (8 coaches) |
4 | On time |
| 23:21 | Polegate CALLING AT: Haywards Heath (23:32)Wivelsfield (23:36) Plumpton (23:43) Cooksbridge (23:48) Lewes (23:53) Berwick (Sussex) (00:06) Polegate (00:11) Southern (8 coaches) |
6 | On time |