GET Ferries

Returns all ferry terminals.

Request Information

https://511nl.ca/api/v2/get/ferryterminals

URI Parameters

URI Parameters
NameDescriptionTypeAdditional information
key

Developer Key

string

Required

format

Valid values are 'xml' or 'json', default 'json'.

string

Optional

Response Information

Resource Description


Resource Description
NameDescriptionType
Id

A unique identifier.

string
PortName

Port name associated with Id.

string
ServiceName

Ferry service name associated with the Id.

string
ServiceUrl

Ferry service url hosted by NL government. Contains more information about the ferry service

string
VesselNames

Vessel names associated with the Id.

string
Status

Associated with the Id, possible values:In Service On Schedule, In Service Off Schedule, Out of Service

string
ScheduleName

Schedule name associated with the Id

string
ScheduleUrl

Ferry service schedule pdf hosted by NL government

string
OrderID

Order of the Ferry Service Text Report specified by NL government, used for visual display order of information for this url https://nl.ibi511.com/list/ferryterminalsforlist

string
MarineWeatherId

Associated with ferry service Id for each row of this report https://nl.ibi511.com/list/ferryterminalsforlist

string
Jurisdiction

The jurisdiction of the ferry terminal.

string
Details

Additional information about the ferry terminal.

string
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
LastUpdated

The date the item's details were last updated in Unix time. More information

integer

Response Formats

JSON

Sample:
[
  {
    "Id": "614",
    "PortName": "Fortune",
    "ServiceName": "SPM Ferries: Fortune - St. Pierre and Miquelon",
    "ServiceUrl": "https://www.spm-ferries.fr/en/home/",
    "VesselNames": "n/a",
    "Status": "No Information Available",
    "ScheduleName": "St Pierre & Miquelon Schedule",
    "ScheduleUrl": "https://www.spm-ferries.fr/en/schedules-and-fares/view-schedules-online/",
    "OrderID": "00000",
    "MarineWeatherId": null,
    "Jurisdiction": "federal",
    "Details": "Service is terminated",
    "Latitude": 47.0752708154095,
    "Longitude": -55.8286865677398,
    "LastUpdated": 1646243460
  },
  {
    "Id": "513",
    "PortName": "Fogo Island",
    "ServiceName": "Fogo Island - Change Islands - Farewell",
    "ServiceUrl": "https://www.gov.nl.ca/tw/ferryservices/schedules/c-fogo/",
    "VesselNames": "MV Veteran",
    "Status": "In Service Off Schedule",
    "ScheduleName": "One Vessel Winter Schedule",
    "ScheduleUrl": "https://www.gov.nl.ca/ti/files/One-Vessel-Winter-2020-1.pdf",
    "OrderID": "00003",
    "MarineWeatherId": null,
    "Jurisdiction": "province",
    "Details": "Freight mode. Gale warning. MV Veteran is currently operating on the one vessel winter schedule. changing status from \"In Service, On Schedule – Service Alert\" to \"in service off schedule\"",
    "Latitude": 49.5716098715608,
    "Longitude": -54.3009996414146,
    "LastUpdated": 1751985660
  }  
]

XML

Sample:
<FerryTerminalsList>
    <FerryTerminals>
        <Id>614</Id>
        <PortName>Fortune</PortName>
        <ServiceName>SPM Ferries: Fortune - St. Pierre and Miquelon</ServiceName>
        <ServiceUrl>https://www.spm-ferries.fr/en/home/</ServiceUrl>
        <VesselNames>n/a</VesselNames>
        <Status>No Information Available</Status>
        <ScheduleName>St Pierre & Miquelon Schedule</ScheduleName>
        <ScheduleUrl>https://www.spm-ferries.fr/en/schedules-and-fares/view-schedules-online/</ScheduleUrl>
        <OrderID>00000</OrderID>
        <MarineWeatherId/>
        <Jurisdiction>federal</Jurisdiction>
        <Details>Service is terminated</Details>
        <Latitude>47.0752708154095</Latitude>
        <Longitude>-55.8286865677398</Longitude>
        <LastUpdated>1646243460</LastUpdated>
    </FerryTerminals>
    <FerryTerminals>
        <Id>513</Id>
        <PortName>Fogo Island</PortName>
        <ServiceName>Fogo Island - Change Islands - Farewell</ServiceName>
        <ServiceUrl>https://www.gov.nl.ca/tw/ferryservices/schedules/c-fogo/</ServiceUrl>
        <VesselNames>MV Veteran</VesselNames>
        <Status>In Service Off Schedule</Status>
        <ScheduleName>One Vessel Winter Schedule</ScheduleName>
        <ScheduleUrl>https://www.gov.nl.ca/ti/files/One-Vessel-Winter-2020-1.pdf</ScheduleUrl>
        <OrderID>00003</OrderID>
        <MarineWeatherId/>
        <Jurisdiction>province</Jurisdiction>
        <Details>Freight mode. Gale warning. MV Veteran is currently operating on the one vessel winter schedule. changing status from "In Service, On Schedule – Service Alert" to "in service off schedule"</Details>
        <Latitude>49.5716098715608</Latitude>
        <Longitude>-54.3009996414146</Longitude>
        <LastUpdated>1751985660</LastUpdated>
    </FerryTerminals>
</FerryTerminalsList>