List Session Downloads
Retrieves metadata of files downloaded during a browser session. Requires a valid API key for authentication.
curl --request GET \
--url https://api.anchorbrowser.io/v1/sessions/{session_id}/downloads \
--header 'anchor-api-key: <api-key>'
{
"data": {
"count": 123,
"items": [
{
"id": "<string>",
"file_link": "https://api.anchorbrowser.io/sessions/42b60264-c48a-4ded-aa54-e4a83a710ee5/downloads/6daab24f-0853-44e6-abb0-618565a7244a/fetch",
"original_download_url": "https://example.com/files/document.doc",
"origin_url": "https://example.com/files/",
"suggested_file_name": "document (2).doc",
"original_file_name": "document.doc",
"duration": 2025,
"size": 177152,
"created_at": "2025-01-18T03:34:56.043Z"
}
]
}
}
Authorizations
API key passed in the header
Path Parameters
The unique identifier of the browser session to retrieve downloads for.
Response
Total number of downloads
The unique ID of the download record.
The URL to download the file from anchorbrowser servers. Requires api key authentication.
"https://api.anchorbrowser.io/sessions/42b60264-c48a-4ded-aa54-e4a83a710ee5/downloads/6daab24f-0853-44e6-abb0-618565a7244a/fetch"
The URL used to download the file.
"https://example.com/files/document.doc"
The original URL where the file was found.
"https://example.com/files/"
The suggested file name for saving the file.
"document (2).doc"
The original file name before any modification.
"document.doc"
The time it took to process or download the file, in milliseconds.
2025
The size of the file in bytes.
177152
The timestamp when the file record was created.
"2025-01-18T03:34:56.043Z"
curl --request GET \
--url https://api.anchorbrowser.io/v1/sessions/{session_id}/downloads \
--header 'anchor-api-key: <api-key>'
{
"data": {
"count": 123,
"items": [
{
"id": "<string>",
"file_link": "https://api.anchorbrowser.io/sessions/42b60264-c48a-4ded-aa54-e4a83a710ee5/downloads/6daab24f-0853-44e6-abb0-618565a7244a/fetch",
"original_download_url": "https://example.com/files/document.doc",
"origin_url": "https://example.com/files/",
"suggested_file_name": "document (2).doc",
"original_file_name": "document.doc",
"duration": 2025,
"size": 177152,
"created_at": "2025-01-18T03:34:56.043Z"
}
]
}
}