List workflows
curl --request GET \
--url https://api.sidenet.ai/v1/workflows \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.sidenet.ai/v1/workflows"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.sidenet.ai/v1/workflows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sidenet.ai/v1/workflows",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sidenet.ai/v1/workflows"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sidenet.ai/v1/workflows")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sidenet.ai/v1/workflows")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"workflows": [
{
"id": "4c2f9e18-7a63-4d05-b1e8-93a7c0f2d641",
"name": "Refund triage",
"description": "Classifies a refund request and fetches the order",
"active_version_id": "e81b4a72-0c95-4f38-a6d2-5b17e9c4038f",
"owner_kind": "org",
"owner_external_id": null,
"created_at": "2026-06-19T08:41:12.330Z",
"updated_at": "2026-08-09T12:17:55.204Z"
}
]
}Workflows
List workflows
Lists non-deleted workflows for the org, newest first. By default only org (Studio-authored) workflows; ?owner=chatter lists the ones end users built through a builder agent (optionally narrowed to one user with &userId=), ?owner=all both.
GET
/
v1
/
workflows
List workflows
curl --request GET \
--url https://api.sidenet.ai/v1/workflows \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.sidenet.ai/v1/workflows"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.sidenet.ai/v1/workflows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sidenet.ai/v1/workflows",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sidenet.ai/v1/workflows"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sidenet.ai/v1/workflows")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sidenet.ai/v1/workflows")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"workflows": [
{
"id": "4c2f9e18-7a63-4d05-b1e8-93a7c0f2d641",
"name": "Refund triage",
"description": "Classifies a refund request and fetches the order",
"active_version_id": "e81b4a72-0c95-4f38-a6d2-5b17e9c4038f",
"owner_kind": "org",
"owner_external_id": null,
"created_at": "2026-06-19T08:41:12.330Z",
"updated_at": "2026-08-09T12:17:55.204Z"
}
]
}Authorizations
Organization API key, generated in studio.sidenet.ai. Backend only — never in a browser.
Query Parameters
Whose workflows: org (default), chatter (end-user built), or all.
Available options:
org, chatter, all With owner=chatter: only this end user's workflows (their external id).
Example:
"user_4821"
Response
Every workflow in the organization, newest first
The records only — no definition. Fetch one with GET /v1/workflows/{id} for its steps and schemas.
Show child attributes
Show child attributes