Homepage
Get suggestions via POST
Retrieves a paginated list of suggestions for the user, using a POST body for location filter criteria.
post/home/suggestions
Query parameters
pageinteger required
Page number (zero-based)
pageSizeinteger required
Number of suggestions per page
productsstring nullable
Comma-separated list of product filters
Request body
Example request
{
"filterCategory": "business"
}Response
Successfully retrieved suggestions
Example response
{
"suggestions": [
{
"product": "listingHealth",
"link": "/listings/health"
}
],
"pageSize": 10,
"size": 10,
"totalCount": 25
}