GET
/
pipelines
/
{task_id}
  {
    "task_id": "b6781f5b-022b-485e-b93c-6a958e51b992",
    "status": "COMPLETED",
    "results": [
      {
        "schema_id": "schema1",
        "metrics": {
          "total_tokens": 1000,
          "prompt_tokens": 500,
          "completion_tokens": 500
        },
        "schema_data": {
          "name": "John Doe",
          "age": 30,
          "email": "john.doe@example.com"
        } 
      }
    ],
    "total_run_time": "123.456 seconds"
  }

This endpoint allows you to retrieve the results of a previously initiated pipeline processing task.

  {
    "task_id": "b6781f5b-022b-485e-b93c-6a958e51b992",
    "status": "COMPLETED",
    "results": [
      {
        "schema_id": "schema1",
        "metrics": {
          "total_tokens": 1000,
          "prompt_tokens": 500,
          "completion_tokens": 500
        },
        "schema_data": {
          "name": "John Doe",
          "age": 30,
          "email": "john.doe@example.com"
        } 
      }
    ],
    "total_run_time": "123.456 seconds"
  }

Path Parameters

task_id
string
required

Unique identifier for the pipeline task

Response

200
application/json
Pipeline results retrieved successfully
task_id
string
required

Unique identifier for the pipeline task

status
enum<string>
required

Current status of the pipeline job

Available options:
PENDING,
IN_PROGRESS,
COMPLETED,
FAILED
results
object[]
required

Array of schema results

total_run_time
string
required

Total execution time of the pipeline