Skip to main content
GET
/
v1
/
executions
/
{executionId}
/
artifacts
List Execution Artifacts
curl --request GET \
  --url https://api.anchorbrowser.io/v1/executions/{executionId}/artifacts \
  --header 'anchor-api-key: <api-key>'
{
  "artifacts": [
    {
      "id": "<string>",
      "fileName": "<string>",
      "filePath": "<string>",
      "size": 123,
      "createdAt": "<string>",
      "downloadUrl": "<string>"
    }
  ]
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

executionId
string
required

The execution result ID.

Response

Execution artifacts retrieved successfully.

artifacts
object[]