Get available audience filter definitions
curl --request GET \
--url https://api.aws53.cloud/v1/intent/audiences/filtersimport requests
url = "https://api.aws53.cloud/v1/intent/audiences/filters"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.aws53.cloud/v1/intent/audiences/filters', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aws53.cloud/v1/intent/audiences/filters",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.aws53.cloud/v1/intent/audiences/filters"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.aws53.cloud/v1/intent/audiences/filters")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aws53.cloud/v1/intent/audiences/filters")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"version": {
"sourceTable": "<string>",
"catalogTable": "<string>",
"catalogVersion": "<string>",
"buildId": "<string>",
"buildDate": "<string>",
"generatedAt": "<string>"
},
"summary": {
"groupCount": 123,
"filterCount": 123,
"valueCount": 123,
"recommendedFilterCount": 123,
"standardFilterCount": 123,
"advancedFilterCount": 123,
"supportsAdvancedLogic": true,
"defaultFieldLogic": "and"
},
"logic": {
"summary": "<string>",
"uiHints": {
"useFields": [
"<string>"
],
"technicalFields": [
"<string>"
],
"valueHint": "<string>"
},
"simpleFilters": {
"shape": "<string>",
"topLevelLogic": "<string>",
"multiSelectValueLogic": "<string>",
"textTermLogic": "<string>"
},
"advancedFilters": {
"enabled": true,
"keys": [],
"conditionShape": "<string>",
"rules": [
"<string>"
]
},
"examples": {
"simple": {},
"or": {},
"nested": {}
}
},
"groups": [
{
"key": "<string>",
"label": "<string>",
"description": "<string>",
"filters": [
{
"key": "<string>",
"label": "<string>",
"operators": [
"<string>"
],
"sourceColumn": "<string>",
"requiresSidecar": true,
"isSearchOnly": true,
"ui": {
"label": "<string>",
"description": "<string>",
"order": 123,
"recommended": true,
"advanced": true,
"placeholder": "<string>",
"helperText": "<string>",
"examples": [
"<string>"
],
"allowCustomValues": true
},
"maxValues": 123,
"maxTerms": 123,
"min": 123,
"max": 123,
"values": [
{
"value": "<string>",
"label": "<string>",
"count": 123
}
]
}
]
}
]
}
}Audience builder
Get available audience filter definitions
Returns the curated Orbit audience filter catalog. Values and counts are read from the cached ClickHouse catalog when available; otherwise static filter definitions are returned.
GET
/
v1
/
intent
/
audiences
/
filters
Get available audience filter definitions
curl --request GET \
--url https://api.aws53.cloud/v1/intent/audiences/filtersimport requests
url = "https://api.aws53.cloud/v1/intent/audiences/filters"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.aws53.cloud/v1/intent/audiences/filters', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aws53.cloud/v1/intent/audiences/filters",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.aws53.cloud/v1/intent/audiences/filters"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.aws53.cloud/v1/intent/audiences/filters")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aws53.cloud/v1/intent/audiences/filters")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"version": {
"sourceTable": "<string>",
"catalogTable": "<string>",
"catalogVersion": "<string>",
"buildId": "<string>",
"buildDate": "<string>",
"generatedAt": "<string>"
},
"summary": {
"groupCount": 123,
"filterCount": 123,
"valueCount": 123,
"recommendedFilterCount": 123,
"standardFilterCount": 123,
"advancedFilterCount": 123,
"supportsAdvancedLogic": true,
"defaultFieldLogic": "and"
},
"logic": {
"summary": "<string>",
"uiHints": {
"useFields": [
"<string>"
],
"technicalFields": [
"<string>"
],
"valueHint": "<string>"
},
"simpleFilters": {
"shape": "<string>",
"topLevelLogic": "<string>",
"multiSelectValueLogic": "<string>",
"textTermLogic": "<string>"
},
"advancedFilters": {
"enabled": true,
"keys": [],
"conditionShape": "<string>",
"rules": [
"<string>"
]
},
"examples": {
"simple": {},
"or": {},
"nested": {}
}
},
"groups": [
{
"key": "<string>",
"label": "<string>",
"description": "<string>",
"filters": [
{
"key": "<string>",
"label": "<string>",
"operators": [
"<string>"
],
"sourceColumn": "<string>",
"requiresSidecar": true,
"isSearchOnly": true,
"ui": {
"label": "<string>",
"description": "<string>",
"order": 123,
"recommended": true,
"advanced": true,
"placeholder": "<string>",
"helperText": "<string>",
"examples": [
"<string>"
],
"allowCustomValues": true
},
"maxValues": 123,
"maxTerms": 123,
"min": 123,
"max": 123,
"values": [
{
"value": "<string>",
"label": "<string>",
"count": 123
}
]
}
]
}
]
}
}Response
200 - application/json
Audience filter catalog
Show child attributes
Show child attributes
Was this page helpful?
⌘I