Skip to main content
GET
/
public
/
workflows
/
runs
/
{run_id}
GET Flow Status
curl --request GET \
  --url https://api.example.com/public/workflows/runs/{run_id}
curl https://catalogapi.rastro.ai/api/public/workflows/runs/{run_id} \
  -H "Authorization: Bearer rastro_pk_..."
Response (running):
{
  "status": "running",
  "progress": 0.5
}
Response (completed):
{
  "status": "completed",
  "results": {
    "data": [
      {"sku": "A1", "title": "Product A", "enriched_field": "..."}
    ]
  }
}