GET Ferries
Returns all ferry terminals.
Request Information
https://511on.ca/api/v2/get/ferryterminals
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
format |
Valid values are 'xml' or 'json', default 'json'. |
string |
Optional |
lang |
Valid values are 'en' or 'fr', default 'en'. |
string |
Optional |
Response Information
Resource Description
Name | Description | Type |
---|---|---|
Id |
A unique identifier. |
integer |
Latitude |
The latitude describing the location. Format: double between -90 and 90. |
double |
Longitude |
The longitude describing the location. Format: double between -180 and 180. |
double |
LocationDescription |
A description of the location. |
string |
Region |
The name of the region of the ferry terminal. |
string |
OperatedBy |
Operating entity of the ferry terminal. |
string |
Website |
The website where more information on the ferry terminal can be found. |
string |
X url for the ferry terminal |
string | |
Status |
Associated with the Id, possible values:In Service On Schedule, In Service Off Schedule, Out of Service |
string |
Details |
Additional information about the ferry terminal. |
string |
Response Formats
JSON
[
{
"Id": 1168598835,
"Latitude": 44.327959,
"Longitude": -79.286761,
"LocationDescription": "Georgina Island Ferry Service - Virginia Dock",
"Region": "Central",
"OperatedBy": "Chippewas of Georgina Island",
"Website": "http://georginaisland.com/community-services/transportation-2/",
"Twitter": null,
"Status": "In Service Off Schedule",
"Details": "The ferry will be out of service due to mechanical issues"
},
{
"Id": 1830010263,
"Latitude": 44.352922,
"Longitude": -79.300011,
"LocationDescription": "Georgina Island Ferry Service - Aahaawe Dock",
"Region": "Central",
"OperatedBy": "Chippewas of Georgina Island",
"Website": "http://georginaisland.com/community-services/transportation-2/",
"Twitter": null,
"Status": "In Service Off Schedule",
"Details": "The ferry will be out of service due to mechanical issues"
}
]
XML
<FerryTerminalsList>
<FerryTerminals>
<Id>1168598835</Id>
<Latitude>44.327959</Latitude>
<Longitude>-79.286761</Longitude>
<LocationDescription>Georgina Island Ferry Service - Virginia Dock</LocationDescription>
<Region>Central</Region>
<OperatedBy>Chippewas of Georgina Island</OperatedBy>
<Website>http://georginaisland.com/community-services/transportation-2/</Website>
<Twitter/>
<Status>In Service Off Schedule</Status>
<Details>The ferry will be out of service due to mechanical issues</Details>
</FerryTerminals>
<FerryTerminals>
<Id>1830010263</Id>
<Latitude>44.352922</Latitude>
<Longitude>-79.300011</Longitude>
<LocationDescription>Georgina Island Ferry Service - Aahaawe Dock</LocationDescription>
<Region>Central</Region>
<OperatedBy>Chippewas of Georgina Island</OperatedBy>
<Website>http://georginaisland.com/community-services/transportation-2/</Website>
<Twitter/>
<Status>In Service Off Schedule</Status>
<Details>The ferry will be out of service due to mechanical issues</Details>
</FerryTerminals>
</FerryTerminalsList>