Signed snapshot
curl --request GET \
--url https://control.api.niadra.com/v1/snapshot/{cell_id} \
--header 'X-Niadra-Cell-Token: <api-key>'import requests
url = "https://control.api.niadra.com/v1/snapshot/{cell_id}"
headers = {"X-Niadra-Cell-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Niadra-Cell-Token': '<api-key>'}};
fetch('https://control.api.niadra.com/v1/snapshot/{cell_id}', 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://control.api.niadra.com/v1/snapshot/{cell_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Niadra-Cell-Token: <api-key>"
],
]);
$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://control.api.niadra.com/v1/snapshot/{cell_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Niadra-Cell-Token", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://control.api.niadra.com/v1/snapshot/{cell_id}")
.header("X-Niadra-Cell-Token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://control.api.niadra.com/v1/snapshot/{cell_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Niadra-Cell-Token"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"manifest": {
"cell_id": "cell-1",
"version": 42,
"documents": {
"0192f0a0-3d4e-7f50-8b61-7c8d9e0f1a23": "sha256:9f2c4e..."
}
},
"signature": "MEUCIQ...",
"kid": "ctl-2026-09",
"documents": {
"0192f0a0-3d4e-7f50-8b61-7c8d9e0f1a23": {
"space_id": "0192f0a0-3d4e-7f50-8b61-7c8d9e0f1a23",
"region": "us-east-1",
"environment": "production"
}
},
"keys": {
"0192f0a0-3d4e-7f50-8b61-7c8d9e0f1a23": [
{
"key_id": "k7Q2mX9a",
"source_id": "0192f0a0-5f60-7172-8d83-9e0f1a2b3c45",
"scopes": [
"context",
"search",
"track",
"act"
]
}
]
},
"keys_signature": "MEQCIF..."
}{
"code": "<string>",
"status": 123,
"title": "<string>",
"detail": "<string>",
"request_id": "<string>",
"type": "about:blank"
}Control: platform operations
Signed snapshot
The signed configuration each cell pulls from the control plane.
GET
/
v1
/
snapshot
/
{cell_id}
Signed snapshot
curl --request GET \
--url https://control.api.niadra.com/v1/snapshot/{cell_id} \
--header 'X-Niadra-Cell-Token: <api-key>'import requests
url = "https://control.api.niadra.com/v1/snapshot/{cell_id}"
headers = {"X-Niadra-Cell-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Niadra-Cell-Token': '<api-key>'}};
fetch('https://control.api.niadra.com/v1/snapshot/{cell_id}', 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://control.api.niadra.com/v1/snapshot/{cell_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Niadra-Cell-Token: <api-key>"
],
]);
$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://control.api.niadra.com/v1/snapshot/{cell_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Niadra-Cell-Token", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://control.api.niadra.com/v1/snapshot/{cell_id}")
.header("X-Niadra-Cell-Token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://control.api.niadra.com/v1/snapshot/{cell_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Niadra-Cell-Token"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"manifest": {
"cell_id": "cell-1",
"version": 42,
"documents": {
"0192f0a0-3d4e-7f50-8b61-7c8d9e0f1a23": "sha256:9f2c4e..."
}
},
"signature": "MEUCIQ...",
"kid": "ctl-2026-09",
"documents": {
"0192f0a0-3d4e-7f50-8b61-7c8d9e0f1a23": {
"space_id": "0192f0a0-3d4e-7f50-8b61-7c8d9e0f1a23",
"region": "us-east-1",
"environment": "production"
}
},
"keys": {
"0192f0a0-3d4e-7f50-8b61-7c8d9e0f1a23": [
{
"key_id": "k7Q2mX9a",
"source_id": "0192f0a0-5f60-7172-8d83-9e0f1a2b3c45",
"scopes": [
"context",
"search",
"track",
"act"
]
}
]
},
"keys_signature": "MEQCIF..."
}{
"code": "<string>",
"status": 123,
"title": "<string>",
"detail": "<string>",
"request_id": "<string>",
"type": "about:blank"
}Authorizations
Path Parameters
Query Parameters
The version the cell already has. With it, the call waits until a newer version exists, or answers 304 at the deadline.
Required range:
x >= 0How long to wait for a newer version, up to 30 seconds. Defaults to 25.
Required range:
0 <= x <= 30Response
The signed snapshot.
signature covers the canonical JSON of manifest; keys_signature that of keys (both Ed25519,
base64url). Each document's SHA-256 over its canonical JSON must match the manifest.

