GET
/
lam
/
tasks
/
{taskId}
/
media
curl --request GET \
  --url https://api.flyingraccoon.tech/lam/tasks/{taskId}/media \
  --header 'raccoon-secret-key: <api-key>'
{
  "media": [
    {
      "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": "session123"
    }
  ],
  "taskId": "task-abcde"
}

Authorizations

raccoon-secret-key
string
header
required

Path Parameters

taskId
string
required

The ID of the task

Response

200
application/json
Successful Response
media
object[]
required

A list of media data, including actions and recordings.

Example:
[
  {
    "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": "session123"
  }
]
taskId
string
required

A unique identifier for the task.

Example:

"task-abcde"