Actions
User Story #839
openEPIC #816: Package Discovery & Search
Feature #831: Package Discovery & Search
backend # Destination Search API
Start date:
Due date:
% Done:
0%
Estimated time:
Description
Destination Search API¶
User Story¶
As the system
I want to return matching destinations quickly
So that users experience fast search suggestions.
API¶
GET /api/search/destinations?keyword=tur
Response¶
[
{
"id":1,
"country":"Turkey",
"city":"Istanbul"
},
{
"id":2,
"country":"Turkey",
"city":"Cappadocia"
}
]
Acceptance Criteria¶
Response time <500 ms
Supports fuzzy matching
Returns active destinations only
Case-insensitive
No data to display
Actions