Skip to main content
GET
/
api
/
v1
/
runs
/
{id}
/
artifacts
List Run Artifacts
curl --request GET \
  --url https://api.example.com/api/v1/runs/{id}/artifacts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "stage_id": "<string>",
      "node_slug": "<string>",
      "retry": 123,
      "relative_path": "<string>",
      "size": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT bearer token issued by fabro-web. See the Authentication guide for details.

Path Parameters

id
string
required

Unique run identifier (ULID).

Response

Artifact files captured for the run

List of captured artifact files for a run.

data
object[]
required