Export a custom processor with all versions. Admin-only.
Note: This endpoint allows admins to export ANY processor across all teams, not just processors belonging to the admin’s team.
Returns the full processor record and all version data, suitable for use as training data or re-importing via the seed endpoint.
import requests
url = "https://www.datalab.to/api/v1/custom_pipelines/{processor_id}/export"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?
import requests
url = "https://www.datalab.to/api/v1/custom_pipelines/{processor_id}/export"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}