The Liked History endpoint returns the complete set of attractions that the authenticated user has positively interacted with — every attraction they have ever swiped right on or imported via bulk like. The response uses the fullDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/viet2811/uk-travel-recommendation/llms.txt
Use this file to discover all available pages before exploring further.
AttractionSerializer format, providing the same rich object shape as the List Recommendations endpoint, so the client can display liked attractions with images, descriptions, location details, and category labels without any secondary requests. This endpoint powers the Liked Attractions screen in the mobile app, where users can review their history and revisit places they have previously saved. Because a user’s liked set can grow unbounded over time, consumers should be prepared to handle responses with large numbers of items.
Endpoint
| Field | Value |
|---|---|
| Method | GET |
| Path | /api/recommendations/history/liked |
| Auth | Bearer token required |
Query Parameters
This endpoint does not accept any query parameters.Results are not paginated. All liked attractions are returned in a single response. If a user has liked a large number of attractions, the response payload will be proportionally large. Consider this when designing loading states in client applications.
Response
Returns an array of all liked attraction objects for the authenticated user, each serialised with the fullAttractionSerializer field set.
200 OK
Unique identifier for the attraction.
Display name of the attraction.
Broad category label for the attraction, e.g.
Heritage, Nature, Entertainment.Specific type label within the parent category, e.g.
Castle, National Park, Museum.Geographic latitude coordinate (WGS 84).
Geographic longitude coordinate (WGS 84). Note: field name is
longtitude (matches the database column).URL to the attraction’s Wikipedia article. May be
null if unavailable.A textual description of the attraction, typically derived from its Wikipedia summary.
List of image URL strings for the attraction. May be an empty array if no images are stored.
The UK county in which the attraction is located.
The UK region in which the attraction is located.
The UK country in which the attraction is located, e.g.
England, Scotland, Wales, Northern Ireland.