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/category/safe_search \
--header 'Authorization: Bearer <token>'[
{
"id": "9aa23e6a-5c3a-4f1e-9a0a-2b2a1e1d8e92",
"name": "Google Search",
"description": "<string>",
"options": {
"strict": "Strict",
"moderate": "Moderate"
}
}
]Retrieves a list of services (e.g., Google, YouTube) for which Safe Search can be enforced in a DNS policy.
curl --request GET \
--url https://v1.api.altostrat.io/content/category/safe_search \
--header 'Authorization: Bearer <token>'[
{
"id": "9aa23e6a-5c3a-4f1e-9a0a-2b2a1e1d8e92",
"name": "Google Search",
"description": "<string>",
"options": {
"strict": "Strict",
"moderate": "Moderate"
}
}
]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 available Safe Search services.
The unique identifier for the Safe Search service.
"9aa23e6a-5c3a-4f1e-9a0a-2b2a1e1d8e92"
The name of the service.
"Google Search"
A description of the service and its options.
A key-value map of available enforcement options. The key is the value to submit, and the value is a human-readable label.
{
"strict": "Strict",
"moderate": "Moderate"
}Was this page helpful?