GET
/
lam
/
tasks
/
{taskId}
/
media
curl --request GET \
  --url https://api.raccoonai.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

The response is of type object.