Skip to main content
GET
/
waap
/
v1
/
analytics
/
filters
/
{type}
Get filter value suggestions
curl --request GET \
  --url https://api.gcore.com/waap/v1/analytics/filters/{type} \
  --header 'Authorization: <api-key>'
{
  "limit": 123,
  "offset": 123,
  "count": 123,
  "results": [
    {
      "value": "<string>",
      "count": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://gcore.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

type
enum<string>
required

Parsed user-agent field type.

Available options:
user-agent-clients,
user-agent-devices,
organizations

Query Parameters

domains
integer[]

List of domain IDs. Empty list means all domains belonging to the current account.

Domain ID

Example:
[1, 2, 3]
name
string | null

Case-insensitive partial autocomplete pattern matched against the value name by the value provider. Empty or omitted returns the available suggestions for the current account and time range.

ordering
enum<string>
default:count

Suggestion ordering. count sorts by observed occurrence count descending (most frequent first) with value as a tie breaker; value sorts alphabetically by value ascending with count as a tie breaker.

Available options:
count,
value
start
string
required

Filter data items starting from a specified date in ISO 8601 format

Example:

"2024-04-13T00:00:00+01:00"

end
string | null

Filter data items up to a specified end date in ISO 8601 format. If not provided, defaults to the current date and time.

Example:

"2024-04-14T12:00:00Z"

limit
integer
default:50

Number of items to return

Required range: 50 <= x <= 200
offset
integer
default:0

Number of items to skip

Required range: 0 <= x <= 100000

Response

Successful Response

limit
integer
required

Number of items requested in the response

offset
integer
required

Items response offset used

count
integer
required

Number of items contain in the response

results
FilterValueSuggestion · object[]
required

List of items returned in the response following given criteria