IO
List Outputs
Retrieve a paginated list of outputs for a specific job
GET
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
The unique job identifier
Filter outputs by port name
Filter outputs associated with a specific input
Number of items to skip for pagination (default: 0)
Maximum number of items to return per page
Response
The job identifier
Total number of outputs matching the filter criteria
Current pagination offset
Maximum number of items returned
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.