Review queue
curl --request GET \
--url https://{space}.{region}.api.niadra.com/v1/review/queue \
--header 'Authorization: Bearer <token>'import requests
url = "https://{space}.{region}.api.niadra.com/v1/review/queue"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{space}.{region}.api.niadra.com/v1/review/queue', 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://{space}.{region}.api.niadra.com/v1/review/queue",
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://{space}.{region}.api.niadra.com/v1/review/queue"
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://{space}.{region}.api.niadra.com/v1/review/queue")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{space}.{region}.api.niadra.com/v1/review/queue")
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{
"items": [
{
"sample_id": "0192f7d0-6e41-7b5c-8d6e-7f8091a2b3c4",
"session_id": "0192f7d0-1a11-7c22-9d33-4e5f60718293",
"source_id": "0192f79e-11aa-7b20-9f3e-6c1d2e4f5a60",
"channel": "voice",
"purpose": "customer_service",
"condition": "new_extractor_version",
"created_at": "2026-09-22T17:15:00Z",
"withheld": 0,
"facts": [
{
"fact_id": "0192f7a2-5d10-7a8e-b1c4-3f6e8d9a0b12",
"predicate": "preferred_visit_time",
"value": "morning",
"category": "preference",
"sensitive": false,
"evidence_event_ids": [
"0192f7a1-6c1e-7c3a-9b1e-5d2f8a4c0e11"
]
}
],
"signals": [
{
"signal": "use",
"item_id": "act_01J8ZK",
"target_id": "sig_01J8ZL",
"manifest_hash": "sha256:5b1e0c"
}
]
}
]
}{
"code": "<string>",
"status": 123,
"title": "<string>",
"detail": "<string>",
"request_id": "<string>",
"type": "about:blank"
}Review and assistant
Review queue
The samples your team checks: extracted facts, measurement signals and patterns.
GET
/
v1
/
review
/
queue
Review queue
curl --request GET \
--url https://{space}.{region}.api.niadra.com/v1/review/queue \
--header 'Authorization: Bearer <token>'import requests
url = "https://{space}.{region}.api.niadra.com/v1/review/queue"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{space}.{region}.api.niadra.com/v1/review/queue', 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://{space}.{region}.api.niadra.com/v1/review/queue",
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://{space}.{region}.api.niadra.com/v1/review/queue"
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://{space}.{region}.api.niadra.com/v1/review/queue")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{space}.{region}.api.niadra.com/v1/review/queue")
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{
"items": [
{
"sample_id": "0192f7d0-6e41-7b5c-8d6e-7f8091a2b3c4",
"session_id": "0192f7d0-1a11-7c22-9d33-4e5f60718293",
"source_id": "0192f79e-11aa-7b20-9f3e-6c1d2e4f5a60",
"channel": "voice",
"purpose": "customer_service",
"condition": "new_extractor_version",
"created_at": "2026-09-22T17:15:00Z",
"withheld": 0,
"facts": [
{
"fact_id": "0192f7a2-5d10-7a8e-b1c4-3f6e8d9a0b12",
"predicate": "preferred_visit_time",
"value": "morning",
"category": "preference",
"sensitive": false,
"evidence_event_ids": [
"0192f7a1-6c1e-7c3a-9b1e-5d2f8a4c0e11"
]
}
],
"signals": [
{
"signal": "use",
"item_id": "act_01J8ZK",
"target_id": "sig_01J8ZL",
"manifest_hash": "sha256:5b1e0c"
}
]
}
]
}{
"code": "<string>",
"status": 123,
"title": "<string>",
"detail": "<string>",
"request_id": "<string>",
"type": "about:blank"
}
