GET Parks API Documentation
Returns all parks.
Request Information
https://511.alberta.ca/api/v2/get/parks
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 |
| Name |
The name of the park. |
string |
| Website |
The website where information about the park can be found. |
string |
Response Formats
[
{
"Id": 2209,
"Latitude": 50.82675,
"Longitude": -113.43667,
"Name": "Wyndham-Carseland Provincial Park",
"Website": "https://www.albertaparks.ca/parks/south/wyndham-carseland-pp"
},
{
"Id": 2210,
"Latitude": 56.123865,
"Longitude": -117.221976,
"Name": "Greene Valley Provincial Park",
"Website": "https://www.albertaparks.ca/parks/north/greene-valley-pp"
}
]
<ParksList>
<Parks>
<Id>2209</Id>
<Latitude>50.82675</Latitude>
<Longitude>-113.43667</Longitude>
<Name>Wyndham-Carseland Provincial Park</Name>
<Website>https://www.albertaparks.ca/parks/south/wyndham-carseland-pp</Website>
</Parks>
<Parks>
<Id>2210</Id>
<Latitude>56.123865</Latitude>
<Longitude>-117.221976</Longitude>
<Name>Greene Valley Provincial Park</Name>
<Website>https://www.albertaparks.ca/parks/north/greene-valley-pp</Website>
</Parks>
</ParksList>