Skip to main content
GET
/
api
/
test-runs
/
{id}
/
artifacts
List Artifacts
curl --request GET \
  --url https://dash.empirical.run/api/test-runs/{id}/artifacts \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "artifacts": [
      {
        "key": "<string>",
        "url": "<string>",
        "size": 123,
        "last_modified": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key from the Empirical dashboard.

Path Parameters

id
integer
required

Test run ID.

Required range: -9007199254740991 <= x <= 9007199254740991

Query Parameters

key
string

Exact artifact path relative to the test run.

prefix
string

Filter artifacts by path prefix.

suffix
string

Filter artifacts by file extension or suffix.

Response

List of artifacts.

data
object
required