Python client for the Control Room API. Generated from spec/openapi.yaml using Fern.
pip install getcontrolroomfrom getcontrolroom import ControlRoomClient
client = ControlRoomClient(
base_url="https://api.getcontrolroom.com",
token="your-token",
)
bookings = client.bookings.list()Service-to-service (app → api):
client = ControlRoomClient(
base_url="https://api.getcontrolroom.com",
user_id="usr_...",
service_secret="secret",
)Bearer token:
client = ControlRoomClient(
base_url="https://api.getcontrolroom.com",
token="your-bearer-token",
)Requires fern and the spec at ../spec/openapi.yaml.
bun add --global fern-api
cd ../fern && fern generate --localMIT — see LICENSE.
Built by Control Room · Developed by Clover Labs