Overview
Fetch the raw bytes of an artifact associated with a project’s entity data or source catalog. Artifact paths are embedded in the responses from project entity and source catalog endpoints. Pass thepath value from those responses as the path query parameter to retrieve the corresponding file.
Only artifacts exposed by this project’s entity and source catalog API responses are accessible through this endpoint. Cross-project artifact access is not permitted.
Endpoint
Authentication
All requests must include a Bearer token in theAuthorization header.
Path Parameters
The unique identifier of the project whose artifact you want to retrieve.
Query Parameters
The artifact path as it appears in a project entity or source catalog response. This value is provided by the API — do not construct artifact paths manually.
Response
Status:200 OK
Content-Type: application/octet-stream
The response body contains the raw binary artifact bytes. Images, PDFs, and other binary formats are returned as-is.
Example Request
Saving with the server-suggested filename
Inspecting headers before downloading
Typical Workflow
- Fetch project entity or source catalog data for a project.
- Locate artifact URLs within the response — each includes a
pathvalue. - Call this endpoint with the extracted
pathto download the artifact bytes.