curl --request GET \
--url https://api.anchorbrowser.io/v1/sessions/{session_id}/recordings \
--header 'anchor-api-key: <api-key>'{
"data": {
"count": 123,
"items": [
{
"id": "<string>",
"is_primary": true,
"file_link": "<string>",
"suggested_file_name": "<string>",
"duration": "<string>",
"size": 123,
"created_at": "2023-11-07T05:31:56Z"
}
]
}
}Retrieves the URLs of the browser session’s video recordings. Requires a valid API key for authentication.
curl --request GET \
--url https://api.anchorbrowser.io/v1/sessions/{session_id}/recordings \
--header 'anchor-api-key: <api-key>'{
"data": {
"count": 123,
"items": [
{
"id": "<string>",
"is_primary": true,
"file_link": "<string>",
"suggested_file_name": "<string>",
"duration": "<string>",
"size": 123,
"created_at": "2023-11-07T05:31:56Z"
}
]
}
}API key passed in the header
The ID of the browser session to retrieve recordings for.
A set of recording URLs associated with the browser session.
Show child attributes
Total number of video recordings
Show child attributes
Unique identifier for the recording
Indicates if this is the primary recording
URL to access the recording file
Suggested filename for the recording
Duration of the recording
Size of the recording file in bytes
Timestamp when the recording was created
Was this page helpful?