DevelopersAPI ReferenceItineraries
Search Published Itineraries
Everyone's published itineraries. With no q or filter, returns the ranked Explore feed. With q, a text search. With filter=following, itineraries from people you follow (needs a signed-in token). Page with cursor; never build a cursor yourself.
AuthorizationBearer <token>
A Travelyfe access token.
In: header
Query Parameters
q?string
Search words, e.g. a city or a theme.
filter?"following"
following for people you follow.
Value in
- "following"
limit?integer
1 to 100. Defaults to 25.
Range
1 <= value <= 100Default
25cursor?string
The nextCursor from the previous page.
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/itineraries"{ "data": [ { "id": "string", "title": "string", "destination": "string", "summary": "string", "heroImageURL": "string", "startDate": "2019-08-24", "tags": [ "string" ], "visibility": "string", "role": "string", "dayCount": 0, "stopCount": 0, "author": {}, "updatedAt": "2019-08-24T14:15:22Z", "etag": "string" } ], "nextCursor": "string"}