curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/artifacts' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"type": "standard",
"storage_key": "string",
"url": "https://example.com/webhooks/stateset"
}
]
Get Job Artifacts
Get artifacts produced by a job.
GET
/
api
/
v1
/
jobs
/
{job_id}
/
artifacts
curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/artifacts' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"type": "standard",
"storage_key": "string",
"url": "https://example.com/webhooks/stateset"
}
]
Get artifacts produced by a job.
Path parameters
string (uuid)
required
Response
ArtifactResponse[] — each element:
string
required
Artifact UUID.
string
required
One of: text, image. Indicates content type at storage_key.
string
required
Object-storage key for the artifact.
string,null
Short-lived presigned download URL when the artifact is downloadable.
Status codes
| Code | Meaning |
|---|---|
200 | Successful Response |
422 | Validation Error |
curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/artifacts' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"type": "standard",
"storage_key": "string",
"url": "https://example.com/webhooks/stateset"
}
]
Last modified on August 31, 2026