Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.streamloop.app/v1/status
import requestsurl = "https://api.streamloop.app/v1/status"response = requests.get(url)print(response.text)
const options = {method: 'GET'};fetch('https://api.streamloop.app/v1/status', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "status": "<string>", "service": "<string>", "version": "<string>" }
Service is operational.
operational | degraded | down