> ## 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.

# List Safe Search Services

> Retrieves a list of services (e.g., Google, YouTube) for which Safe Search can be enforced in a DNS policy.



## OpenAPI

````yaml /api/en/utm-ips.yaml get /content/category/safe_search
openapi: 3.0.3
info:
  title: Altostrat UTM & IPS API
  version: 1.0.0
  description: >-
    Manage DNS filtering, BGP threat mitigation, content categories, and site
    policy attachment through the public `/content` gateway path.
servers:
  - url: https://v1.api.altostrat.io
security:
  - bearerAuth: []
tags:
  - name: DNS Content Filtering
    description: Manage DNS-based content filtering policies and their components.
  - name: BGP Threat Intelligence
    description: Manage BGP-based IP reputation policies and threat feeds.
  - name: Site Security Configuration
    description: View and manage security policy attachments for specific sites.
paths:
  /content/category/safe_search:
    get:
      tags:
        - DNS Content Filtering
      summary: List Safe Search Services
      description: >-
        Retrieves a list of services (e.g., Google, YouTube) for which Safe
        Search can be enforced in a DNS policy.
      operationId: listSafeSearchServices
      responses:
        '200':
          description: A list of available Safe Search services.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SafeSearchService'
components:
  schemas:
    SafeSearchService:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: The unique identifier for the Safe Search service.
          example: 9aa23e6a-5c3a-4f1e-9a0a-2b2a1e1d8e92
        name:
          type: string
          description: The name of the service.
          example: Google Search
        description:
          type: string
          description: A description of the service and its options.
        options:
          type: object
          description: >-
            A key-value map of available enforcement options. The key is the
            value to submit, and the value is a human-readable label.
          example:
            strict: Strict
            moderate: Moderate
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````