Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request GET \
--url https://v1.api.altostrat.io/content/policy \
--header 'Authorization: Bearer <token>'[
{
"id": "9a9a3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8a",
"name": "Standard Employee Policy",
"applications": [
"9a9b3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8b",
"9a9c3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8c"
],
"safe_search": [
{
"id": "9a9f3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8f",
"option": "strict"
}
],
"dns_whitelist": [
"internal.corp.com",
"status.altostrat.io"
],
"dns_blacklist": [
"malicious-site.net"
],
"block_adult": true,
"attachments": 5,
"created_at": "2025-10-29T13:04:44Z"
}
]Retrieves a list of all DNS Content Filtering policies associated with your account.
curl --request GET \
--url https://v1.api.altostrat.io/content/policy \
--header 'Authorization: Bearer <token>'[
{
"id": "9a9a3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8a",
"name": "Standard Employee Policy",
"applications": [
"9a9b3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8b",
"9a9c3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8c"
],
"safe_search": [
{
"id": "9a9f3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8f",
"option": "strict"
}
],
"dns_whitelist": [
"internal.corp.com",
"status.altostrat.io"
],
"dns_blacklist": [
"malicious-site.net"
],
"block_adult": true,
"attachments": 5,
"created_at": "2025-10-29T13:04:44Z"
}
]Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A list of DNS policies.
The unique identifier for the DNS policy.
"9a9a3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8a"
A human-readable name for the policy.
"Standard Employee Policy"
A list of application IDs to be blocked by this policy.
[
"9a9b3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8b",
"9a9c3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8c"
]A list of Safe Search enforcement rules.
Show child attributes
A list of fully qualified domain names (FQDNs) to always allow, overriding any blocking rules.
["internal.corp.com", "status.altostrat.io"]A list of fully qualified domain names (FQDNs) to always block.
["malicious-site.net"]If true, automatically blocks all applications categorized as adult content.
true
The number of sites currently using this policy.
5
The timestamp when the policy was created.
"2025-10-29T13:04:44Z"
Was this page helpful?