GET
/
runs
/
{run_id}
/
recordings
curl --request GET \
  --url https://platform.happyrobot.ai/api/v1/runs/{run_id}/recordings \
  --header 'authorization: <authorization>' \
  --header 'x-organization-id: <x-organization-id>'
{
  "recordings": [
    {
      "session_id": "<string>",
      "url": "<string>"
    }
  ]
}

Headers

authorization
string
required

Your API key for authentication. Use Bearer format.

Example:

"Bearer API_KEY"

x-organization-id
string
required

The organization ID to use for the request. Required if your user is associated to more than one organization.

Path Parameters

run_id
string
required

Query Parameters

session_id
string

The session ID to filter recordings by.

url_expires_in_days
number | null
default:1

The number of days to expire the presigned URL for.

Response

200
application/json
200

A list of recordings.

recordings
object[]
required