Skip to main content
GET
/
api
/
v1
/
custom_pipelines
/
{processor_id}
/
pipelines
Get Pipelines Using Processor
import requests

url = "https://www.datalab.to/api/v1/custom_pipelines/{processor_id}/pipelines"

headers = {"X-API-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "pipelines": [
    {
      "pipeline_id": "<string>",
      "name": "<string>",
      "created": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Path Parameters

processor_id
string
required

Cookies

wos-session
string
datalab_active_team
string

Response

Successful Response

Response listing pipelines that use a given custom processor.

pipelines
PipelineReference · object[]