The public API supports viewing active pipelines. To view active pipelines, use the following endpoint:
List pipelines
GEThttps://app.biodock.ai/api/external/pipelines
Query Parameters
Name
Type
Description
Headers
Name
Type
Description
{ results: [{ id:"0123456789", description:"My first pipeline", createdAt:"2000-01-01T00:00:00.001Z" }], count:1}
Sample Usage
View all your active pipelines
import requestsAPI_KEY =""# Replace with your api keyURL ="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)