Call HTTP endpoints during Assemblies
🤖/http/request calls your application during an Assembly and emits returned input file references.

Calls an HTTP endpoint during the Assembly and expects optional JSON describing zero or more input files or result-file URLs to emit from this Step.
Your endpoint must return a 2xx response. An empty body, [], or { "files": [] } means this
Step emits no files. You can also return one file object, an array of file objects, or
{ "files": [...] } / { "files": { "name": {...} } }. Returned file objects must include
either a path that matches one of the input file paths sent to your endpoint, or an HTTP(S)
url that Transloadit downloads and emits as a new result file.
Usage example
Ask your application which input files should continue:
{
"steps": {
"request": {
"robot": "/http/request",
"method": "POST",
"payload": "metadata",
"url": "https://example.com/transloadit/files",
"use": []
}
}
}Parameters
interpolateboolean | Record<string, boolean>Controls whether Assembly Variables are interpolated for individual instruction fields.
By default, most Robot instruction fields interpolate Assembly Variables. Set this to
falseto treat every instruction field as literal text, or set an individual field path tofalseto treat only that field as literal text. For Robot-specific fields that are literal by default, set this totrueor set that field path totrueto opt back into interpolation.Use field names such as
path, or dotted paths such asffmpeg.vffor nested objects.output_metaRecord<string, boolean> | boolean | Array<string>Allows you to specify a set of metadata that is more expensive on CPU power to calculate, and thus is disabled by default to keep your Assemblies processing fast.
For images, you can add
"has_transparency": truein this object to extract if the image contains transparent parts and"dominant_colors": trueto extract an array of hexadecimal color codes from the image.For images, you can also add
"blurhash": trueto extract a BlurHash string — a compact representation of a placeholder for the image, useful for showing a blurred preview while the full image loads.For videos, you can add the
"colorspace": trueparameter to extract the colorspace of the output video.For videos, you can also add
"interlaced": trueto detect whether the video is interlaced. This combines the cheap ffprobefield_orderflag with a boundedidetsampling pass over the first frames of the source, exposinginterlaced,field_order, and a diagnosticinterlace_detectionobject underfile.meta. This is computationally expensive and billed accordingly.For audio, you can add
"mean_volume": trueto get a single value representing the mean average volume of the audio file.You can also set this to
falseto skip metadata extraction and speed up transcoding.resultboolean(default:false)Whether the results of this Step should be present in the Assembly Status JSON
queuebatchSetting the queue to 'batch', manually downgrades the priority of jobs for this step to avoid consuming Priority job slots for jobs that don't need zero queue waiting times
force_acceptboolean(default:false)Force a Robot to accept a file type it would have ignored.
By default, Robots ignore files they are not familiar with. 🤖/video/encode, for example, will happily ignore input images.
With the
force_acceptparameter set totrue, you can force Robots to accept all files thrown at them. This will typically lead to errors and should only be used for debugging or combatting edge cases.ignore_errorsboolean | Array<meta | execute>(default:[])Ignore errors during specific phases of processing.
Setting this to
["meta"]will cause the Robot to ignore errors during metadata extraction.Setting this to
["execute"]will cause the Robot to ignore errors during the main execution phase.Setting this to
trueis equivalent to["meta", "execute"]and will ignore errors in both phases.usestring | Array<string> | Array<object> | objectSpecifies which Step(s) to use as input.
- You can pick any names for Steps except
":original"(reserved for user uploads handled by Transloadit) - You can provide several Steps as input with arrays:
{ "use": [ ":original", "encoded", "resized" ] } - You can also tag input Steps with
asto pass semantic intent to robots:{ "use": [ { "name": ":original", "as": "image" }, { "name": ":original", "as": "mask" } ] }
Tip
That's likely all you need to know about
use, but you can view Advanced use cases.- You can pick any names for Steps except
url— requiredstringThe HTTP or HTTPS endpoint to call.
methodDELETE | GET | PATCH | POST | PUT(default:"POST")HTTP method to use for the request.
payloadnone | metadata | file | files(default:"none")Controls what is sent to your endpoint.
none: Send no request body.metadata: Send a JSON body with Assembly metadata, fields, the previous Step, and file metadata.file: Send multipart form data with apayloadJSON field and the first input file as afilepart.files: Send multipart form data with apayloadJSON field and all input files as repeatedfiles[]parts. Useful withbundle_steps.
The
payloadJSON object containsassembly,fields,previous_step,file, andfiles.fileis the first input file’s metadata ornull;filesis an array of input file metadata.headersArray<string> | Array<Record<string, boolean | string | number | string | null>> | Record<string, boolean | string | number | string | null> | string(default:[])Custom request headers.
Headers can be specified as an array of strings in the format
"Header-Name: value", an array of objects, an object map, or a JSON string that will be parsed into an object/array.timeoutstring | number(default:60)Maximum number of seconds to wait for the HTTP request.
The effective timeout is the lower of this value and Transloadit’s server-side cap. The cap is 30 seconds plus 1 second per MiB sent to your endpoint.
max_response_sizestring | number(default:1048576)Maximum accepted response size in bytes. The response should normally be a small JSON document.
max_result_filesstring | number(default:10)Maximum number of files that the endpoint may return.
max_result_file_sizestring | number(default:104857600)Maximum allowed size in bytes for each result file returned by URL. If the remote server reports a larger file size, the result download is rejected before it starts. If the remote server does not report a size upfront, the download is aborted once this limit is exceeded.
result_download_timeoutstring | number(default:120)Maximum number of seconds to spend downloading each result file returned by URL.