List Records
Search for records of a particular class.
Recipes
Filter records by location
Filter records by location
1. Set a search operator for a field
near operator is applied to a user_location field.2. As a result, the API returns records filtered by the specified location.
11.00,45.40;16800 value for the user_location field are turned.Filter records by criteria
Filter records by criteria
1. Set a search operator for a field
lt operator is applied to a score_value custom field.2. As a result, the API returns records filtered upon the request.
score_value less than 1000 are returned.Group records
Group records
1. Set an aggregation operator for a field to calculate an average for all numeric values
calc aggregation operator is applied to the score_value and set to the avg value.2. Set an aggregation operator for a field to group records
game_mode_name field.3. As a result, the API returns records grouped according to the request.
gamed_mode_name field with an average calculated for the score_value field.Filter records by location with API key
Filter records by location with API key
1. Use 'Authorization' header to pass API key
2. Set a search operator for a field
near operator is applied to a user_location field.3. As a result, the API returns records filtered by the specified location.
11.00,45.40;16800 value for the user_location field are turned.Filter records by criteria with API key
Filter records by criteria with API key
1. Use 'Authorization' header to pass API key
2. Set a search operator for a field
lt operator is applied to a score_value custom field.3. As a result, the API returns records filtered upon the request.
score_value less than 1000 are returned.Group records with API key
Group records with API key
1. Use 'Authorization' header to pass API key
2. Set an aggregation operator for a field to calculate an average for all numeric values
calc aggregation operator is applied to the score_value and set to the avg value.3. Set an aggregation operator for a field to group records
game_mode_name field.4. As a result, the API returns records grouped according to the request.
gamed_mode_name field with an average calculated for the score_value field._id field. It is indexed and will be much faster than the created_at field.score_value[gt]=100&score_value[lt]=1000&game_mode_name[in]=deathmatch,ctf
Search Operators
The request can contain all, some or none of the next search operators:
Path Parameters
Query Parameters
output parameter takes the form of a record with a list of fields for inclusion or exclusion
from the result set. output[include] specifies the fields to include. The _id field is,
by default, included in the result set. To exclude the _id field from the result set, you need
to specify the exclusion of the _id field in the output[exclude] value.output parameter takes the form of a record with a list of fields for inclusion or exclusion
from the result set. output[exclude] specifies the fields to exclude. The _id field is,
by default, included in the result set. To exclude the _id field from the result set, you need
to specify the exclusion of the _id field in the output[exclude] value.Headers
ApiKey {your_api_key}. Must be used
either QB-Token or Authorization.