Technique Runs
Get a technique run
Returns status, progress, outputs, and error details for a technique run when it is accessible to the authenticated public API key.
get/techniques/{techniqueId}/runs/{runId}
Path parameters
techniqueIdstring required
Technique identifier or slug
Example:art-directors-critique
Technique identifier or slug
runIdstring required
Run identifier
Example:run_abc123
Run identifier
Response
Technique run returned.
Example response
{
"run_id": "run_abc123",
"error_code": "provider_error",
"error_message": "The provider failed to complete the generation.",
"outputs": [
{
"output_id": "output_1",
"url": "https://media.flora.ai/output.png"
}
]
}