Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url http://localhost:3000/v2/tasks/-/stats \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:3000/v2/tasks/-/stats"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:3000/v2/tasks/-/stats', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "http://localhost:3000/v2/tasks/-/stats",
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 := "http://localhost:3000/v2/tasks/-/stats"
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("http://localhost:3000/v2/tasks/-/stats")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/v2/tasks/-/stats")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"current": {
"events": 42,
"monitored": 18,
"startDate": "2026-03-12T00:00:00.000Z",
"endDate": "2026-04-11T00:00:00.000Z"
},
"previous": {
"events": 42,
"monitored": 18,
"startDate": "2026-03-12T00:00:00.000Z",
"endDate": "2026-04-11T00:00:00.000Z"
},
"topTasks": [
{
"taskId": "tsk_abc",
"displayName": "Base39 Tecnologia Ltda",
"document": "12345678000190",
"currentEventCount": 12,
"previousEventCount": 8,
"trend": [
0,
1,
2,
0,
3,
1,
0
]
}
],
"categoryMix": [
{
"key": "financial",
"percentLast30Days": 24.5,
"percentLast90Days": 18.2
}
]
}curl --request GET \
--url http://localhost:3000/v2/tasks/-/stats \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:3000/v2/tasks/-/stats"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:3000/v2/tasks/-/stats', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "http://localhost:3000/v2/tasks/-/stats",
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 := "http://localhost:3000/v2/tasks/-/stats"
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("http://localhost:3000/v2/tasks/-/stats")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/v2/tasks/-/stats")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"current": {
"events": 42,
"monitored": 18,
"startDate": "2026-03-12T00:00:00.000Z",
"endDate": "2026-04-11T00:00:00.000Z"
},
"previous": {
"events": 42,
"monitored": 18,
"startDate": "2026-03-12T00:00:00.000Z",
"endDate": "2026-04-11T00:00:00.000Z"
},
"topTasks": [
{
"taskId": "tsk_abc",
"displayName": "Base39 Tecnologia Ltda",
"document": "12345678000190",
"currentEventCount": 12,
"previousEventCount": 8,
"trend": [
0,
1,
2,
0,
3,
1,
0
]
}
],
"categoryMix": [
{
"key": "financial",
"percentLast30Days": 24.5,
"percentLast90Days": 18.2
}
]
}OAuth2 Authorization Code flow
1 <= x <= 36530
Search in task displayName and queryPrimary
"base39"
Show child attributes
Show child attributes
Show child attributes
Share of updates by monitoring task kind (processos, notícias, alterações Receita Federal): % in last 30d vs % in last 90d per window
Show child attributes