Dynamiq
Apps

List run artifacts

Lists files produced by a run, with short-lived download URLs.

GET
/v1/apps/{app_id}/runs/{run_id}/artifacts

Authorization

AuthorizationBearer <token>

Organization or project Access Key created in the Dynamiq console. Used for deployed-app (Runs API), AI Gateway, traces collector, and management API requests. Send as Authorization: Bearer <access-key>.

In: header

Path Parameters

app_id*string

App UUID.

run_id*string

Run UUID.

Query Parameters

page?integer

Page number (1-based).

page_size?integer

Number of items per page.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/runs/497f6eca-6276-4993-bfeb-53cbbbba6f08/artifacts"
{
  "data": [
    {
      "id": "0c1d2e3f-4a5b-4c6d-8e7f-8091a2b3c4d5",
      "type": "file",
      "download_url": "https://storage.getdynamiq.ai/artifacts/0c1d2e3f...?sig=...",
      "name": "triage-summary.pdf",
      "size": 18231,
      "mime_type": "application/pdf",
      "saved_at": "2026-06-10T09:15:33Z"
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 25,
    "page_count": 1,
    "total_count": 1
  }
}
{
  "error": {
    "code": "unauthorized",
    "message": "Unauthorized"
  }
}
{
  "error": {
    "code": "not_found",
    "message": "Not Found"
  }
}