cURL

curl -N -X GET \
  "https://trust-sse.oten.com/api/v1/scan-url?url=https://google.com&lang=en" \
  -H "Authorization: Bearer ot_live_-d5Il4kuuvO..." \
  -H "Accept: text/event-stream"

The -N flag disables output buffering, which is required for real-time SSE delivery.

Last updated