IO
List Outputs
Retrieve a paginated list of outputs for a specific job
GET
Requires version 1.1.0 or later of the Archetype platform.
Overview
This endpoint returns a paginated list of output files produced by a job. You can filter by port name or input ID to find specific results.Request
string
required
The unique job identifier
string
Filter outputs by port name
string
Filter outputs associated with a specific input
integer
Number of items to skip for pagination (default: 0)
integer
Maximum number of items to return per page
Response
string
The job identifier
integer
Total number of outputs matching the filter criteria
integer
Current pagination offset
integer
Maximum number of items returned
array
Array of output objects, each containing:
id— Unique output identifierjob_id— Parent job identifierport_name— Output port nameinput_id— Associated input ID (if applicable)input_file_id—file_idof the source input (if applicable)data— Data reference (DataRef) with requiredref(presigned download URL) andfilename, plus optionalfile_type,file_extension,num_bytes,metadata,file_tags,file_attributesexpires_at— Expiration timestamp for the presigned download URL (re-fetch after this time)created_at— Creation timestamp
Output download URLs are presigned and expire at the time indicated by
expires_at. Re-fetch the outputs list to get fresh URLs after expiration.