Skip to main content

Get a specific output asset for a flow

This endpoint allows to download the generated output assets of a flow. The reference {asset_id} needed to download an output asset is provided in the previous route (GET /{flow_id}/outputs).

Endpoint

GET https://flows.generio.ai/flows/{flow_id}/outputs/{asset_id}

Parameters

flow_id (required)

  • Location: path
  • Type: string

asset_id (required)

  • Location: path
  • Type: string

Code Examples

Copy and run these examples in your terminal or code editor. Make sure to replace YOUR_TOKEN with your actual authentication token.

curl -X GET "https://flows.generio.ai/flows/{flow_id}/outputs/{asset_id}" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"