Pipelines

The public API supports viewing active pipelines. To view active pipelines, use the following endpoint:

List pipelines

GET https://app.biodock.ai/api/external/pipelines

Query Parameters

Name
Type
Description

limit

Number

Maximum number of results to show.

startingAfter

String

Pagination cursor id.

Headers

Name
Type
Description

X-API-KEY*

String

API key.

{
    results: [{
        id: "0123456789",
        description: "My first pipeline",
        createdAt: "2000-01-01T00:00:00.001Z"
    }],
    count: 1
}

Sample Usage

View all your active pipelines

Last updated