Get location rankings via GET
Retrieves a paginated ranking of locations based on their scores, using query parameters for filter criteria.
Query parameters
Comma-separated location IDs to filter by
Comma-separated business IDs to filter by
Comma-separated location group IDs to filter by
Comma-separated labels to filter by
Sort direction (asc or desc)
Page number (zero-based)
Number of results per page
Minimum score filter (inclusive)
Maximum score filter (inclusive)
Minimum normalised score filter (inclusive). When set, results are ordered by normalised score.
Maximum normalised score filter (inclusive). When set, results are ordered by normalised score.
Comma-separated location IDs to exclude
Comma-separated business IDs to exclude
Comma-separated location group IDs to exclude
Comma-separated labels to exclude
Filter strategy to apply: location-groups, labels, business, or location
Search query string depending on filter category
Response
Successfully retrieved location rankings
Example response
{
"ranks": [
{
"locationId": 98765,
"identifier": "LOC-001",
"name": "Main Street Store",
"address": "123 Main St, Berlin",
"score": 85,
"normalisedScore": 85
}
],
"pageSize": 10,
"size": 10,
"totalCount": 150
}