> For the complete documentation index, see [llms.txt](https://oten.gitbook.io/trust-support/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://oten.gitbook.io/trust-support/documentation/api-reference/code-samples/curl.md).

# cURL

{% code lineNumbers="true" %}

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

{% endcode %}

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