Get Workflow Request History
curl --request GET \
--url https://app.splox.io/api/v1/workflow-requests/{id}/history \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.splox.io/api/v1/workflow-requests/{id}/history"
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/workflow-requests/{id}/history', 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/workflow-requests/{id}/history",
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/workflow-requests/{id}/history"
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/workflow-requests/{id}/history")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.splox.io/api/v1/workflow-requests/{id}/history")
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{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workflow_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"entry_node_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"created_at": "2023-11-07T05:31:56Z",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"billing_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"parent_node_execution_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"parent_workflow_request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chat_id": "<string>",
"payload": {},
"metadata": {},
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"limit": 123,
"next_cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}Workflow Execution
Get Workflow Request History
Retrieves cursor-based paginated execution history for a workflow.
GET
/
workflow-requests
/
{id}
/
history
Get Workflow Request History
curl --request GET \
--url https://app.splox.io/api/v1/workflow-requests/{id}/history \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.splox.io/api/v1/workflow-requests/{id}/history"
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/workflow-requests/{id}/history', 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/workflow-requests/{id}/history",
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/workflow-requests/{id}/history"
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/workflow-requests/{id}/history")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.splox.io/api/v1/workflow-requests/{id}/history")
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{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workflow_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"entry_node_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"created_at": "2023-11-07T05:31:56Z",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"billing_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"parent_node_execution_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"parent_workflow_request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chat_id": "<string>",
"payload": {},
"metadata": {},
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"limit": 123,
"next_cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}Retrieves cursor-based paginated execution history for a workflow.
Pagination: If
Usage
curl -H "Authorization: Bearer YOUR_TOKEN" \
"https://app.splox.io/api/v1/workflow-requests/{workflow_request_id}/history?limit=10"
from splox import SploxClient
client = SploxClient(api_key="YOUR_API_KEY")
result = client.workflows.get_history("WORKFLOW_REQUEST_ID", limit=10)
for req in result.data:
print(f"[{req.status}] {req.id} — {req.created_at}")
import Splox from "splox";
const client = new Splox("YOUR_API_KEY");
const result = await client.workflows.getHistory("WORKFLOW_REQUEST_ID", { limit: 10 });
for (const req of result.data) {
console.log(`[${req.status}] ${req.id} — ${req.created_at}`);
}
client := splox.NewClient("YOUR_API_KEY")
result, err := client.Workflows.GetHistory(ctx, "WORKFLOW_REQUEST_ID", &splox.HistoryParams{
Limit: 10,
})
for _, req := range result.Data {
fmt.Printf("[%s] %s — %s\n", req.Status, req.ID, req.CreatedAt)
}
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 10 | Items per page (max: 100) |
cursor | uuid | — | Cursor from previous response for next page |
search | string | — | Search string to filter results |
Response
{
"data": [
{
"id": "0199f123-d60e-7ffd-9131-4cc5ab040ee8",
"workflow_version_id": "0199e001-a23b-7c8d-1234-567890abcdef",
"entry_node_ids": ["0199e002-b34c-8d9e-2345-678901bcdef0"],
"status": "completed",
"payload": { "text": "Hello", "chat_id": "..." },
"started_at": "2025-10-22T12:15:32Z",
"completed_at": "2025-10-22T12:15:47Z",
"created_at": "2025-10-22T12:15:30Z"
}
],
"pagination": {
"limit": 10,
"next_cursor": "0199f122-c50d-6eec-8020-3bb4a9f30dd7"
}
}
next_cursor is present, pass it as ?cursor=<value> to get the next page. If next_cursor is absent, there are no more results.
Notes
Authentication required: Include Bearer token in Authorization header.
Authorizations
API token generated from your Splox account settings. Create tokens at https://app.splox.io/account?tab=settings
Path Parameters
Workflow request ID
Query Parameters
Items per page (default: 10, max: 100)
Required range:
x <= 100Cursor for pagination (UUID of last item from previous page)
Search string to filter results
⌘I

