Skip to main content
GET
/
category
/
safe_search
List Safe Search Services
curl --request GET \
  --url https://api.altostrat.io/category/safe_search \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "9aa23e6a-5c3a-4f1e-9a0a-2b2a1e1d8e92",
    "name": "Google Search",
    "description": "<string>",
    "options": {
      "strict": "Strict",
      "moderate": "Moderate"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

A list of available Safe Search services.

id
string<uuid>

The unique identifier for the Safe Search service.

Example:

"9aa23e6a-5c3a-4f1e-9a0a-2b2a1e1d8e92"

name
string

The name of the service.

Example:

"Google Search"

description
string

A description of the service and its options.

options
object

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"
}