Skip to main content
GET
/
v1
/
live
/
{id}
Get a live stream by ID
curl --request GET \
  --url https://api.pyannote.ai/v1/live/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "startedAt": "2023-11-07T05:31:56Z",
  "completedAt": "2023-11-07T05:31:56Z",
  "input": {},
  "status": "created"
}

Documentation Index

Fetch the complete documentation index at: https://docs.pyannote.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

id
string
required
startedAt
string<date-time> | null
required
completedAt
string<date-time> | null
required
input
object
required
status
enum<string>

Status of the stream

Available options:
created,
running,
done,
error
Example:

"created"