import requests
url = "https://app.oneperfectslice.ai/api/public/v1/filters/company-domains"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"companyDomains": [
{
"id": "acme.com",
"displayName": "acme.com",
"callCount": 28
}
]
}
}Search for company domains associated with calls on your team. Returns matching domains with call counts. Use the results to populate companyDomains filters.
import requests
url = "https://app.oneperfectslice.ai/api/public/v1/filters/company-domains"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"companyDomains": [
{
"id": "acme.com",
"displayName": "acme.com",
"callCount": 28
}
]
}
}Documentation Index
Fetch the complete documentation index at: https://docs.oneperfectslice.ai/llms.txt
Use this file to discover all available pages before exploring further.