GET
/
sessions
/
{sessionId}
/
media
curl --request GET \
  --url https://api.flyingraccoon.tech/sessions/{sessionId}/media \
  --header 'raccoon-secret-key: <api-key>'
{
  "actions": [
    {
      "action": "click",
      "index": 1,
      "screenshot": "https://example.com/screenshot1.png"
    }
  ],
  "recordings": [
    {
      "pageTitle": "Example Page",
      "pageUrl": "https://example.com",
      "url": "https://example.com/recording1.webm"
    }
  ],
  "sessionId": "session-12345"
}

Authorizations

raccoon-secret-key
string
header
required

Path Parameters

sessionId
string
required

The ID of the session

Response

200
application/json
Successful Response
actions
object[]
required

A list of actions performed, not applicable to fleet sessions.

Example:
[
  {
    "action": "click",
    "index": 1,
    "screenshot": "https://example.com/screenshot1.png"
  }
]
recordings
object[]
required

A list of recordings associated.

Example:
[
  {
    "pageTitle": "Example Page",
    "pageUrl": "https://example.com",
    "url": "https://example.com/recording1.webm"
  }
]
sessionId
string
required

A unique identifier for the session.

Example:

"session-12345"