Homepage
Get suggestions via GET
Retrieves a paginated list of suggestions for the user, using query parameters for location filter criteria.
get/home/suggestions
Query parameters
pageinteger required
Page number (zero-based)
pageSizeinteger required
Number of suggestions per page
locationIdsstring nullable
Comma-separated location IDs to filter by
businessIdsstring nullable
Comma-separated business IDs to filter by
locationGroupIdsstring nullable
Comma-separated location group IDs to filter by
labelsstring nullable
Comma-separated labels to filter by
excludedLocationIdsstring nullable
Comma-separated location IDs to exclude
excludedBusinessIdsstring nullable
Comma-separated business IDs to exclude
excludedLocationGroupIdsstring nullable
Comma-separated location group IDs to exclude
excludedLabelsstring nullable
Comma-separated labels to exclude
productsstring nullable
Comma-separated list of product filters
filterCategorystring nullable
Filter strategy to apply: location-groups, labels, business, or location
querystring nullable
Search query string depending on filter category
Response
Successfully retrieved suggestions
Example response
{
"suggestions": [
{
"product": "listingHealth",
"link": "/listings/health"
}
],
"pageSize": 10,
"size": 10,
"totalCount": 25
}