---
title: "Get Recordings"
method: GET
path: "/recordings"
tags: ["recordings"]
---

# Get Recordings

`GET /recordings`

Get recordings for the current user, optionally filtered by organization.

## Query parameters

- `organization_id` string, nullable — Organization ID filter
- `page` integer — Page number (starts from 1)
- `page_size` integer — Number of recordings per page

## Response `200`

Successful Response

- RecordingList
  - `recordings` Recording[], required
    - `s3_bucket` string, required — S3 bucket name
    - `s3_object_key` string, required — S3 object key
    - `latitude` number, nullable — GPS latitude
    - `longitude` number, nullable — GPS longitude
    - `location_address` string, nullable — Human-readable address
    - `location_accuracy` number, nullable — GPS accuracy in meters
    - `start_time` string, date-time, nullable — Start time of the recording
    - `end_time` string, date-time, nullable — End time of the recording
    - `user_id` string, uuid, required — User ID who created the recording
    - `organization_id` string, nullable — Organization ID (optional)
    - `waveform_data` number[], nullable — Waveform data for audio visualization
    - `status` string, nullable — Recording status (e.g., uploading, transcribing, completed, failed)
    - `id` string, uuid
    - `created_at` string, date-time
    - `updated_at` string, date-time, nullable
  - `total` integer, required
  - `page` integer, required — Current page number
  - `page_size` integer, required — Number of items per page
  - `total_pages` integer, required — Total number of pages

## Other responses

- `404` — Not found
- `422` — Validation Error

---

[API](https://skmtc.dev/noso/apis/crucible-backend-api.md) · [All operations](https://skmtc.dev/noso/apis/crucible-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/noso/crucible-backend-api/revisions/112efbdea3eb/schema)
