Fleet
Sessions
Fetch sessions ran in the past
GET
Authorizations
Query Parameters
Filter sessions created after this Unix timestamp (in milliseconds).
Example:
1678886400000
Filter sessions created before this Unix timestamp (in milliseconds).
Example:
1678972800000
Filter sessions by a specific session ID.
Example:
"session_456"
Filter sessions by a specific task ID.
Example:
"task_123"
Page number for pagination.
Required range:
x >= 1
Example:
2
Number of sessions per page (maximum 100).
Required range:
1 <= x <= 50
Example:
15
Filter sessions by execution type (e.g., 'run', 'extract').
Available options:
run
, extract
, fleet
Example:
["run"]
Field to sort sessions by (e.g., 'timestamp', 'executionTime').
Available options:
timestamp
, executionTime
, taskId
, status
, executionType
Example:
"timestamp"
Sort order ('ascend' or 'descend').
Available options:
ascend
, descend
Example:
"ascend"
Filter sessions by Raccoon passcode.
Example:
"code456"
Response
200
application/json
Successful Response
List of sessions.
Example:
[
{
"executionTime": 30,
"executionType": "extract",
"inputs": {
"param2": "value2",
"url": "https://another-example.com"
},
"output": [
{ "extracted_data1": "value1" },
{ "extracted_data2": "value2" }
],
"raccoonPasscode": "raccoon_secret_456",
"sessionId": "session_xyz789012",
"status": "success",
"taskId": "task_abcdef123456",
"timestamp": 1678972800
}
]
Metadata about the session list.
Was this page helpful?