GET Ferry Terminals
Returns all ferry terminals.
Request Information
https://511.alaska.gov/api/v2/get/ferryterminals
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key |
Developer Key |
string |
Required |
| format |
Valid values are 'xml' or 'json', default 'json'. |
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 |
| TerminalID |
A unique identifier for the ferry terminal. |
string |
| Terminal |
The official name of the ferry terminal. |
string |
| Address |
The address of the ferry terminal. |
string |
| City |
The city where the ferry terminal is located. |
string |
| PhoneNumber |
The primary contact phone number for the ferry terminal. |
string |
| Website |
The website where more information on the ferry terminal can be found. |
string |
Response Formats
JSON
[
{
"Id": 37,
"Latitude": 48.7217316880403,
"Longitude": -122.512634342327,
"TerminalID": "BEL",
"Terminal": "Bellingham Ferry Terminal",
"Address": "355 Harris Avenue",
"City": "Bellingham, Washington 98225",
"PhoneNumber": "(360) 676-8445",
"Website": "https://dot.alaska.gov/amhs/comm/bellingham.shtml"
},
{
"Id": 38,
"Latitude": 54.2958034281649,
"Longitude": -130.351413045494,
"TerminalID": "YPR",
"Terminal": "Prince Rupert Ferry Terminal",
"Address": "2100 Park Avenue",
"City": "Prince Rupert, BC",
"PhoneNumber": "(907) 465-3941",
"Website": "https://dot.alaska.gov/amhs/comm/prince_rupert.shtml"
}
XML
<FerryTerminalsList>
<FerryTerminals>
<Id>37</Id>
<Latitude>48.7217316880403</Latitude>
<Longitude>-122.512634342327</Longitude>
<TerminalID>BEL</TerminalID>
<Terminal>Bellingham Ferry Terminal</Terminal>
<Address>355 Harris Avenue</Address>
<City>Bellingham, Washington 98225</City>
<PhoneNumber>(360) 676-8445</PhoneNumber>
<Website>https://dot.alaska.gov/amhs/comm/bellingham.shtml</Website>
</FerryTerminals>
<FerryTerminals>
<Id>38</Id>
<Latitude>54.2958034281649</Latitude>
<Longitude>-130.351413045494</Longitude>
<TerminalID>YPR</TerminalID>
<Terminal>Prince Rupert Ferry Terminal</Terminal>
<Address>2100 Park Avenue</Address>
<City>Prince Rupert, BC</City>
<PhoneNumber>(907) 465-3941</PhoneNumber>
<Website>https://dot.alaska.gov/amhs/comm/prince_rupert.shtml</Website>
</FerryTerminals>
</FerryTerminalsList>