List Workflows
curl --request GET \
--url https://app.splox.io/api/v1/workflows \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.splox.io/api/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://app.splox.io/api/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://app.splox.io/api/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://app.splox.io/api/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://app.splox.io/api/v1/workflows")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.splox.io/api/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": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"latest_version": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workflow_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"version_number": 123,
"name": "<string>",
"status": "draft",
"description": "<string>",
"metadata": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"is_public": true
}
],
"pagination": {
"limit": 123,
"next_cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}Workflows
List Workflows
Lists all workflows owned by the authenticated user. Supports cursor-based pagination and search.
GET
/
workflows
List Workflows
curl --request GET \
--url https://app.splox.io/api/v1/workflows \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.splox.io/api/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://app.splox.io/api/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://app.splox.io/api/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://app.splox.io/api/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://app.splox.io/api/v1/workflows")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.splox.io/api/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": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"latest_version": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workflow_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"version_number": 123,
"name": "<string>",
"status": "draft",
"description": "<string>",
"metadata": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"is_public": true
}
],
"pagination": {
"limit": 123,
"next_cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}Lists all workflows owned by the authenticated user. Supports cursor-based pagination and search.
When
Usage
curl https://app.splox.io/api/v1/workflows?limit=10 \
-H "Authorization: Bearer YOUR_TOKEN"
from splox import SploxClient
client = SploxClient(api_key="YOUR_API_KEY")
result = client.workflows.list(limit=10, search="customer support")
for wf in result.workflows:
print(wf.id, wf.latest_version.name)
# Paginate
if result.pagination.has_more:
next_page = client.workflows.list(cursor=result.pagination.next_cursor)
import Splox from "splox";
const client = new Splox("YOUR_API_KEY");
const result = await client.workflows.list({ limit: 10, search: "customer support" });
for (const wf of result.workflows) {
console.log(wf.id, wf.latest_version?.name);
}
// Paginate
if (result.pagination.has_more) {
const nextPage = await client.workflows.list({ cursor: result.pagination.next_cursor });
}
client := splox.NewClient("YOUR_API_KEY")
result, err := client.Workflows.List(ctx, &splox.ListParams{
Limit: 10,
Search: "customer support",
})
for _, wf := range result.Workflows {
fmt.Println(wf.ID, wf.LatestVersion.Name)
}
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 20 | Items per page (1–100) |
cursor | string (uuid) | — | Cursor from pagination.next_cursor of previous response |
search | string | — | Filter by workflow name or description |
Response
{
"workflows": [
{
"id": "019c3221-29d7-70e1-aa1e-dee02589289b",
"user_id": "0199d001-c45d-9e0f-3456-789012cdef01",
"latest_version": {
"id": "019c3221-29da-7d08-93fa-c48dbaa8b1db",
"workflow_id": "019c3221-29d7-70e1-aa1e-dee02589289b",
"version_number": 1,
"name": "My Workflow",
"description": "A workflow for processing orders",
"status": "draft",
"created_at": "2025-10-22T10:00:00Z",
"updated_at": "2025-10-22T10:00:00Z"
},
"created_at": "2025-10-22T10:00:00Z",
"updated_at": "2025-10-22T10:00:00Z"
}
],
"pagination": {
"limit": 20,
"next_cursor": "019c3221-29d7-70e1-aa1e-dee02589289b"
}
}
Pagination
Ifnext_cursor is present, pass it as the cursor query parameter to fetch the next page:
curl "https://app.splox.io/api/v1/workflows?limit=10&cursor=019c3221-29d7-70e1-aa1e-dee02589289b" \
-H "Authorization: Bearer YOUR_TOKEN"
next_cursor is null, there are no more results.
Notes
Authentication required: Only workflows owned by the authenticated user are returned.
Authorizations
API token generated from your Splox account settings. Create tokens at https://app.splox.io/account?tab=settings
Query Parameters
Items per page (default: 20, max: 100)
Required range:
1 <= x <= 100Cursor for pagination (UUID of last item from previous page)
Filter by workflow name or description
⌘I

