الانتقال إلى المحتوى الرئيسي
GET
/
category
/
safe_search
عرض قائمة بخدمات البحث الآمن
curl --request GET \
  --url https://api.altostrat.io/category/safe_search \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "9aa23e6a-5c3a-4f1e-9a0a-2b2a1e1d8e92",
    "name": "بحث جوجل",
    "description": "<string>",
    "options": {
      "strict": "صارم",
      "moderate": "معتدل"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

قائمة بخدمات البحث الآمن المتاحة.

id
string<uuid>

المعرّف الفريد لخدمة البحث الآمن.

Example:

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

name
string

اسم الخدمة.

Example:

"بحث جوجل"

description
string

وصف للخدمة وخياراتها.

options
object

خريطة (key-value) لخيارات الفرض المتاحة. المفتاح (key) هو القيمة التي يتم إرسالها، والقيمة (value) هي التسمية المقروءة.

Example:
{ "strict": "صارم", "moderate": "معتدل" }