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": { "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.
The response is of type object.
object