Skip to main content
GET
/
v1
/
downloads
/
{id}
Get a Download
curl --request GET \
  --url https://api.browserbase.com/v1/downloads/{id} \
  --header 'X-BB-API-Key: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "sessionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "filename": "<string>",
  "mimeType": "<string>",
  "size": 123,
  "checksum": "<string>",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-BB-API-Key
string
header
required

Path Parameters

id
string<uuid>
required

The download ID.

Response

The request has succeeded.

id
string<uuid>
required

Unique identifier for the download.

sessionId
string<uuid>
required

The Session ID this download belongs to.

filename
string
required

The filename of the downloaded file.

mimeType
string
required

The MIME type of the file.

size
number
required

File size in bytes.

checksum
string
required

SHA256 checksum of the file.

createdAt
string<date-time>
required

Timestamp when the file was downloaded.