GET
/
v1
/
sessions
/
{session_id}
/
downloads
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

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

session_id
string
required

The unique identifier of the browser session to retrieve downloads for.

Response

200
application/json
A list of download metadata associated with the browser session.
data
object