Skip to main content

Livestorm Nexus API

Welcome to the Livestorm Nexus API documentation. This API allows you to manage rooms, recordings, workspaces, and more programmatically.

Base URL

https://api.nexus.livestorm.co/api

In development:

http://localhost:8123/api

Authentication

All API requests require authentication. There are two ways to authenticate:

  1. Session-based — Sign in via Google OAuth, which sets a session cookie.
  2. API Key — Pass your API key in the Authorization header:
Authorization: Bearer lnx_your_api_key_here

Response Format

All responses are JSON. Successful responses return the requested data:

{
"rooms": [...]
}

Error responses include an error field:

{
"error": "Room not found"
}

Rate Limits

There are currently no rate limits enforced. This may change in future versions.