Skip to main content

Destinations

Proposed data:

{
"name": "Vancouver, B.C.",
"image": "https://...",
"description": "Vancouver, British Columbia, is a vibrant coastal city…",
"url": "http://localhost:3000/api/v1/destination/vancouverbc"
}

TODO See standard requirement for Search for locations within cities, add location pins on map? (https://developers.google.com/maps/documentation/places/web-service/search)

  • Show city/town specific transportation options/cost

Search for a destination

GET /api/v1/destination

Find destinations within a certain radius and/or in a city.

If the city URL param is specified, only search results that are in that city will be returned.

If lat, lon are specified, then the search will be within a circular radius of that location. Note that both lat and lon are required together (i.e. queries with only lat or only lon will be rejected).

Parameters

token stringThe user access token

Path

cityCity name
latLatitude of location (optional)
lonLongitude of location (optional)
radiusRadius to search for location by (optional for lat/lon, default 50km)

Response Codes

Status codeDescription
200OK
400Bad request
401Unauthorized
404Not found

Code samples for "Search for a destination"

GET /api/v1/destinations?city=VancouverBC
curl -L \
-H "Authorization: Bearer <YOUR-TOKEN>" \
http://localhost:3000/api/v1/destinations?city=VancouverBC

status: 200

[
{
"name": "Queen Elizabeth Park",
"image": "https://...",
"description": "Queen Elizabeth Park is a 130-acre municipal park located in Vancouver, British Columbia, Canada."
},
{
"name": "Stanley Park",
"image": "https://...",
"description": "Stanley Park is a 405-hectare public park that borders the downtown of Vanocuver in British Columbia, Canada and is almost entirely surrounded by waters of Vancouver Harbour an..."
}
]

GET /api/v1/destinations?lat=49.225407&lon=-123.023471
curl -L \
-H "Authorization: Bearer <YOUR-TOKEN>" \
http://localhost:3000/api/v1/destinations?lat=49.225407&lon=-123.023471

status: 200

[
{
"name": "Central Park",
"image": "https://...",
"description": "Central Park is a 90-acre municipal park located in Burnaby, British Columbia, Canada."
},
{
"name": "Killarney Park",
"image": "https://...",
"description": "Killarney Community Centre is a 32.5 acre municipal park located in Vancouver, British Columbia, Canada."
}
]