## Add **post** `/v1/streams/{namespace}` Monitor the livestream at the given stream URL. This method returns immediately. ### Path Parameters - `namespace: string` The namespace to ingest stream data into ### Body Parameters - `id: string` - `stream_url: string` ### Returns - `requestId: string` - `status: "accepted"` - `"accepted"` ### Example ```http curl https://api.safetykit.com/v1/streams/$NAMESPACE \ -H 'Content-Type: application/json' \ -H "Authorization: Bearer $SAFETYKIT_API_KEY" \ -d '{ "id": "YOUR_STREAM_ID", "stream_url": "https://cdn.example.com/20948D23.m3u8" }' ```