curl --request GET \
--url https://api.example.com/intelligence/actionimport requests
url = "https://api.example.com/intelligence/action"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/intelligence/action', 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/intelligence/action",
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/intelligence/action"
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/intelligence/action")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/intelligence/action")
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{
"orgDid": "did:web:org-a.example",
"urn": "urn:via:action:8dac0698-b005-4572-9801-7be144c545a5",
"name": "Book a train ticket",
"description": "<string>",
"version": 3,
"published": true,
"deleted": true,
"digestSRI": "sha256-…",
"createdAt": "2026-06-01T12:00:00.000Z",
"definition": {}
}Resolve an action
Resolve an action URN into its definition: name, description, declared parameters and the policy rules behind it.
Snapshot and window bodies report per-action figures keyed by URN. The URN alone is a pointer; this endpoint tells you what an execution of that action actually permits.
Use your own organization DID in orgDid to resolve your actions. Use a partner organization’s DID to resolve theirs; this requires an active sharing grant from that organization, otherwise the request returns 404.
See Risk metrics for how sharing grants let you consult another organization’s intelligence.
curl --request GET \
--url https://api.example.com/intelligence/actionimport requests
url = "https://api.example.com/intelligence/action"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/intelligence/action', 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/intelligence/action",
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/intelligence/action"
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/intelligence/action")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/intelligence/action")
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{
"orgDid": "did:web:org-a.example",
"urn": "urn:via:action:8dac0698-b005-4572-9801-7be144c545a5",
"name": "Book a train ticket",
"description": "<string>",
"version": 3,
"published": true,
"deleted": true,
"digestSRI": "sha256-…",
"createdAt": "2026-06-01T12:00:00.000Z",
"definition": {}
}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
DID of the organization whose data is consulted. Your own organization DID needs no grant; any other requires an active sharing grant from that organization to yours.
"did:web:org-a.example"
URN of the action version to resolve, exactly as it appears in snapshot and window bodies.
"urn:via:action:8dac0698-b005-4572-9801-7be144c545a5"
Response
The resolved action: identity, version and definition.
Organization whose action this is.
"did:web:org-a.example"
The resolved action version URN, echoed back.
"urn:via:action:8dac0698-b005-4572-9801-7be144c545a5"
Human name of the action.
"Book a train ticket"
Human description of what the action permits.
Version number this URN pins. Each version is immutable once published.
3
Whether this version was published (mandates can only pin published versions).
Whether the organization has since deleted the action. Deleted actions still resolve: a URN surfaced by a snapshot was in force on live mandates.
Subresource integrity digest of the definition.
"sha256-…"
When this version was created.
"2026-06-01T12:00:00.000Z"
The definition itself: target (method, domain, path), userParams and executionParams (declared fields with descriptions), rules (the policy, evaluated on every verification) and mapper.