GET
/
recordings
/
{id}
curl --request GET \
  --url https://api.daily.co/v1/recordings/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "room_name": "<string>",
  "start_ts": 123,
  "status": "finished",
  "max_participants": 123,
  "duration": 123,
  "share_token": "<string>",
  "tracks": [
    {}
  ],
  "s3key": "<string>",
  "mtgSessionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "isVttEnabled": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The ID of the recording to retrieve

Response

200
application/json
Successful response

The response is of type object.