GET
/
v4
/
pipelines
List pipelines
curl --request GET \
  --url https://gentrace.ai/api/v4/pipelines \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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>)

Query Parameters

slug

Filter pipelines by slug

Example:

"my-pipeline"

folderId
string<uuid> | null

The ID of the folder to filter pipelines by

Example:

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

Response

200
application/json

Successful response

The response is of type object.