GET
/
sessions
/
{session_id}
/
logs
curl --request GET \
  --url https://api.flyingraccoon.tech/sessions/{session_id}/logs \
  --header 'raccoon-secret-key: <api-key>'
{
  "session_id": "session_12345",
  "session_logs": {}
}

Authorizations

raccoon-secret-key
string
header
required

Path Parameters

session_id
string
required

Response

200
application/json
Successful Response
session_id
string
required

A unique identifier for the session.

Example:

"session_12345"

session_logs
object
required

A dictionary containing the browser console logs for the session.

Example:
{}