v8

latestOpenAPI 3.1.1LicenseRef-Proprietaryraw.githubusercontent.com2026-05-19280916.6 KB
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.

run_idstring required

Run identifier

status'pending' | 'running' | 'completed' | 'failed' required
progressnumber required
created_atnumber required
started_atnumber
completed_atnumber
error_codestring

Machine-readable run error code

error_messagestring

Human-readable run error message

charged_costnumber

Cost charged in USD

poll_urlstring uri

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"
    }
  ]
}