Skip to main content
GET
/
openapi.json
This OpenAPI 3.1 document — unauthenticated.
curl --request GET \
  --url https://api.streamloop.app/v1/openapi.json
import 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));
{}

Response

200 - application/json

The OpenAPI document.

The response is of type object.