This OpenAPI 3.1 document — unauthenticated.
This OpenAPI 3.1 document — unauthenticated.
GET
This OpenAPI 3.1 document — unauthenticated.
Response
200 - application/json
The OpenAPI document.
The response is of type object.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://api.streamloop.app/v1/openapi.jsonimport requests
url = "https://api.streamloop.app/v1/openapi.json"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.streamloop.app/v1/openapi.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}curl --request GET \
--url https://api.streamloop.app/v1/openapi.jsonimport requests
url = "https://api.streamloop.app/v1/openapi.json"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.streamloop.app/v1/openapi.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}The OpenAPI document.
The response is of type object.