POST
/
v2
/
query
/
audience_wave_counts
curl --request POST \
  --url https://api.globalwebindex.com/v2/query/audience_wave_counts \
  --header 'Content-Type: application/json' \
  --data '{
  "and": [
    {
      "question": "q2",
      "options": [
        "q2_1",
        "q2_2"
      ],
      "min_count": 1,
      "not": false
    },
    {
      "question": "q6",
      "options": [
        "q6_2"
      ],
      "min_count": 1,
      "not": false
    }
  ]
}'
{
  "data": [
    {
      "wave_code": "q2_2019",
      "total": 10,
      "percentage": 0.3
    }
  ]
}

Body

application/json
Audience Expression

Flexible expression of audience scope.

and
object[]

List of sub-expressions to apply intersection of their scopes.

Flexible expression of audience scope.

or
object[]

List of sub-expressions to apply union of their scopes.

Flexible expression of audience scope.

not
boolean

To use negation of the expression.

question
string

Question code to define datapoint scope.

Example:

"q2"

options
string[]

Datapoint codes to limit scopes of interest.

Example:
["q2_1", "q2_2"]
suffixes
string[]

Suffixes to extend datapoint codes for more detailed responses.

Example:
["1", "2", "3"]
min_count
integer

Minimal count of positive datapoints in one response.

Example:

1

Response

200
application/json
Correct results for given expression.

Result of wave counts for audience builder query

data
object[]