GET
/
api
/
sessions
/
{session_id}
/
downloads
curl --request GET \
  --url https://api.anchorbrowser.io/api/sessions/{session_id}/downloads \
  --header 'anchor-api-key: <api-key>'
{
  "data": [
    {
      "id": "014101cd-263a-47a2-bb73-9768089da639",
      "file_link": "https://api.anchorbrowser.io/api/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 session to retrieve downloads for.

Response

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