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

NameTypeDescription

limit

Number

Maximum number of results to show.

startingAfter

String

Pagination cursor id.

Headers

NameTypeDescription

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

import requests

API_KEY = "" # Replace with your api key

URL = "https://app.biodock.ai/api/external/pipelines"
headers = {"X-API-KEY": API_KEY, "Content-Type": "application/json"}

response = requests.get(URL, headers=headers)
print(response.text)

Last updated