curl --request GET \
--url https://api.example.com/actionsimport requests
url = "https://api.example.com/actions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/actions', 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.example.com/actions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/actions"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/actions")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/actions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "507f1f77bcf86cd799439011",
"name": "Create Stripe Payment Intent",
"updatedAt": "2025-01-01T00:00:00.000Z",
"versions": [
{
"id": "urn:via:action:abc-123",
"version": 1,
"createdAt": "2025-01-01T00:00:00.000Z",
"digestSRI": "sha256-47DEQpj8HBSaTImW5JCeuQeRkm5NMpJWZG3hSuFU"
}
],
"description": "Authorize an agent to create a one-off payment intent on Stripe."
}
],
"totalPages": 1
}{
"statusCode": 400,
"message": "pageSize must not be greater than 100",
"error": "Bad Request"
}Get Actions
Retrieve a paginated list of actions for the authenticated organization. Only published versions are ever exposed here; drafts are hidden from public clients. Each action includes up to its 10 most recent published versions (newest first); use GET /actions/version/ to page through the full version history. Supports search (case-insensitive partial match on the action name) and pagination via pageIndex and pageSize.
curl --request GET \
--url https://api.example.com/actionsimport requests
url = "https://api.example.com/actions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/actions', 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.example.com/actions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/actions"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/actions")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/actions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "507f1f77bcf86cd799439011",
"name": "Create Stripe Payment Intent",
"updatedAt": "2025-01-01T00:00:00.000Z",
"versions": [
{
"id": "urn:via:action:abc-123",
"version": 1,
"createdAt": "2025-01-01T00:00:00.000Z",
"digestSRI": "sha256-47DEQpj8HBSaTImW5JCeuQeRkm5NMpJWZG3hSuFU"
}
],
"description": "Authorize an agent to create a one-off payment intent on Stripe."
}
],
"totalPages": 1
}{
"statusCode": 400,
"message": "pageSize must not be greater than 100",
"error": "Bad Request"
}Headers
Pin request, response, and webhook shapes to a specific dated API version (YYYY-MM-DD). Omit to use the version pinned to your API key (set when the key is created; new keys default to the latest version). New integrations should target the latest version.
^\d{4}-\d{2}-\d{2}$"2026-09-01"
Query Parameters
Zero-based page index. 0 returns the first page.
0
Number of items per page
5 <= x <= 10010
Search query to filter by. Is case-insensitive and does not need to match the entire value.
100"example"
Filter by active status. Accepts true/false as string or boolean.
true