> ## Documentation Index
> Fetch the complete documentation index at: https://docs.daily.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Recordings - overview

> Using our REST API, the /recordings endpoints let a developer manage, create, and download recordings of meetings in their Daily rooms.

You can [list](/reference/rest-api/recordings/list-recordings) and [delete](/reference/rest-api/recordings/delete-recording) with the Daily API.

We support `"local"` recording to a participant's own device in addition to three cloud-based recording types: `"cloud"`, `"cloud-audio-only"`, and `"raw-tracks"`.

If you will be recording your calls, you might be interested in monitoring the status of those recordings. Daily's recording events help you monitor that and respond accordingly.

## The "recording" object

A recording object represents a single saved recording. See [recording configuration](/reference/rest-api/recordings/get-recording) for a full list of possible properties.

```json theme={null}
{
  "id": "0cb313e1-211f-4be0-833d-8c7305b19902",
  "room_name": "test-recording-room",
  "start_ts": 1548789650,
  "status": "finished",
  "max_participants": 2,
  "duration": 277,
  "tracks": [],
  "share_token": "NcWgEiJuqD8v"
}
```

<Note>
  Head to our **[recordings guide](/docs/guides/features/recording)** for detailed information on when and how to use each recording type.
</Note>
