Skip to main content
GET
/
v4
/
pipelines
/
{id}
Get a single pipeline
curl --request GET \
  --url https://gentrace.ai/api/v4/pipelines/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "createdAt": "2025-04-01T00:00:00.000Z",
  "updatedAt": "2025-04-01T00:00:00.000Z",
  "slug": "my-awesome-pipeline",
  "displayName": "My Awesome Pipeline",
  "folderId": "6527747a-ba86-441a-aebd-1ad94460bc89",
  "archivedAt": "2025-04-01T00:00:00.000Z",
  "goldenDatasetId": "6527747a-ba86-441a-aebd-1ad94460bc89"
}

Authorizations

Authorization
string
header
required

Enter Gentrace API key (Format: Authorization: Bearer <token>)

Path Parameters

id
string<uuid>
required

Pipeline UUID

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

Successful response

id
string<uuid>
required

Pipeline UUID

Example:

"123e4567-e89b-12d3-a456-426614174000"

createdAt
string
required

Creation timestamp (ISO 8601)

Example:

"2025-04-01T00:00:00.000Z"

updatedAt
string
required

Last update timestamp (ISO 8601)

Example:

"2025-04-01T00:00:00.000Z"

slug
string
required

Pipeline slug

Minimum length: 1
Example:

"my-awesome-pipeline"

displayName
string | null
required

Pipeline display name

Example:

"My Awesome Pipeline"

folderId
string<uuid> | null
required

Folder UUID

Example:

"6527747a-ba86-441a-aebd-1ad94460bc89"

archivedAt
string | null
required

Archive timestamp (ISO 8601)

Example:

"2025-04-01T00:00:00.000Z"

goldenDatasetId
string<uuid> | null
required

Golden dataset UUID

Example:

"6527747a-ba86-441a-aebd-1ad94460bc89"