Get SSF stream status
GET
/v1/signals/status
const url = 'http://localhost:8693/v1/signals/status?stream_id=example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:8693/v1/signals/status?stream_id=example'Returns the health status of an SSF stream.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” stream_id
required
string
Responses
Section titled “ Responses ”Stream status
Media type application/json
object
stream_id
string
status
string
subject
string
Example generated
{ "stream_id": "example", "status": "example", "subject": "example"}Missing stream_id
Media type application/json
object
error
required
Error code (RFC 8693 compatible)
string
error_description
Human-readable error detail
string
Example
{ "error": "invalid_request"}Stream not found
Media type application/json
object
error
required
Error code (RFC 8693 compatible)
string
error_description
Human-readable error detail
string
Example
{ "error": "invalid_request"}