Skip to main content
GET
/
workflows
/
run
/
{workflow_run_id}
ワークフロー実行詳細を取得
curl --request GET \
  --url https://{api_base_url}/workflows/run/{workflow_run_id} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://{api_base_url}/workflows/run/{workflow_run_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://{api_base_url}/workflows/run/{workflow_run_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://{api_base_url}/workflows/run/{workflow_run_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://{api_base_url}/workflows/run/{workflow_run_id}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://{api_base_url}/workflows/run/{workflow_run_id}")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://{api_base_url}/workflows/run/{workflow_run_id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "id": "fb47b2e6-5e43-4f90-be01-d5c5a088d156",
  "workflow_id": "7c3e33d4-2a8b-4e5f-9b1a-d3c6e8f12345",
  "status": "succeeded",
  "inputs": "{\"query\": \"Translate this to French\"}",
  "outputs": {
    "result": "Traduisez ceci en francais"
  },
  "error": null,
  "total_steps": 3,
  "total_tokens": 150,
  "created_at": 1705407629,
  "finished_at": 1705407630,
  "elapsed_time": 1.23
}
{
"status": 400,
"code": "not_workflow_app",
"message": "Please check if your app mode matches the right API route."
}
{
"status": 404,
"code": "not_found",
"message": "Workflow run not found."
}

Authorizations

Authorization
string
header
required

API Key 認証です。すべての API リクエストにおいて、Authorization HTTP ヘッダーに Bearer プレフィックスを付けた API Key を含めてください。例:Authorization: Bearer {API_KEY}API Key はサーバーサイドに保存し、クライアントサイドで共有・保存しないことを強く推奨します。API Key の漏洩は深刻な結果につながる可能性があります。API Key が欠落または無効な場合、HTTP 401 とエラーコード unauthorized が返されます。

Path Parameters

workflow_run_id
string
required

ワークフロー実行 ID です。ワークフロー実行レスポンス、ストリーミングイベント、またはメッセージメタデータから取得できます。

Response

ワークフロー実行の詳細の取得に成功しました。

id
string<uuid>

ワークフロー実行 ID です。

workflow_id
string<uuid>

Workflow ID.

status
string

ワークフローの実行ステータスです。running は実行中、succeeded は正常完了、failed は実行エラー、stopped は手動停止、partial-succeeded は一部のノードが成功し他が失敗、paused は人間の入力待ちを示します。

inputs
string | null

ワークフロー実行の入力変数です。生の JSON 文字列として返されるため(例:{"query": "..."})、クライアント側でパースする必要があります。null の場合もあります。

outputs
object

ワークフローからの出力データです。出力がまだない場合は空のオブジェクトです。

error
string | null

ワークフローが失敗した場合のエラーメッセージです。

total_steps
integer

実行されたワークフローの合計ステップ数です。

total_tokens
integer

消費された合計トークン数です。

created_at
integer<int64>

ワークフロー実行が作成された Unix タイムスタンプです。

finished_at
integer<int64> | null

ワークフロー実行が完了した Unix タイムスタンプです。

elapsed_time
number<float> | null

合計経過時間(秒)です。

Last modified on July 9, 2026