Custom Processors
List Custom Pipelines
List all custom processors for a team. Returns processors ordered by creation date (newest first).
GET
/
api
/
v1
/
custom_processors
List Custom Pipelines
import requests
url = "https://www.datalab.to/api/v1/custom_processors"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)curl --request GET \
--url https://www.datalab.to/api/v1/custom_processors \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://www.datalab.to/api/v1/custom_processors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://www.datalab.to/api/v1/custom_processors"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"pipelines": [
{
"processor_id": "<string>",
"status": "<string>",
"created_at": "<string>",
"name": "<string>",
"request_description": "<string>",
"success": true,
"completed_at": "<string>",
"error_message": "<string>",
"active_version": 0,
"max_version": 0,
"iteration_in_progress": false,
"is_template": false,
"eval_rubric_id": 123,
"pipeline_id": "<string>"
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?
⌘I
List Custom Pipelines
import requests
url = "https://www.datalab.to/api/v1/custom_processors"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)curl --request GET \
--url https://www.datalab.to/api/v1/custom_processors \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://www.datalab.to/api/v1/custom_processors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://www.datalab.to/api/v1/custom_processors"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"pipelines": [
{
"processor_id": "<string>",
"status": "<string>",
"created_at": "<string>",
"name": "<string>",
"request_description": "<string>",
"success": true,
"completed_at": "<string>",
"error_message": "<string>",
"active_version": 0,
"max_version": 0,
"iteration_in_progress": false,
"is_template": false,
"eval_rubric_id": 123,
"pipeline_id": "<string>"
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}