Skip to main content
GET
/
api
/
live
/
live-sessions
List live sessions
curl --request GET \
  --url https://api-prod.nomadicml.com/api/live/live-sessions \
  --header 'Authorization: Bearer <token>'
{
  "sessions": [
    {
      "session_id": "<string>",
      "stream_id": "<string>",
      "name": "<string>",
      "source_url": "<string>",
      "status": "<string>",
      "chunk_count": 123,
      "chunks": [
        {}
      ],
      "events": [
        {}
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.nomadicml.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <NOMADIC_API_KEY>.

Query Parameters

scope
enum<string>

Optional session scope.

Available options:
personal,
org

Response

Successful response.

sessions
object[]