curl --request GET \
--url https://api.nomos.pro/watchlist \
--header 'x-api-key: <api-key>'import requests
url = "https://api.nomos.pro/watchlist"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.nomos.pro/watchlist', 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.nomos.pro/watchlist",
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-api-key: <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://api.nomos.pro/watchlist"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<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://api.nomos.pro/watchlist")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nomos.pro/watchlist")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"sourceRefNumber": "QDi.436",
"source": "un_sc",
"sourceDataId": "<string>",
"designationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subjectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subjectType": "individual",
"primaryName": "<string>",
"nameOriginalScript": "<string>",
"nationalities": [
"<string>"
],
"aliases": [
{
"name": "<string>",
"quality": "good"
}
],
"regime": "Al-Qaida",
"committee": "1267",
"status": "listed",
"listedOn": "2023-12-25",
"delistedOn": "2023-12-25",
"lastReviewedOn": "2023-12-25",
"sourceLastUpdated": "2023-12-25",
"lastUpdatedOn": "2023-12-25",
"narrative": "<string>",
"narrativeTranslations": {
"pt-BR": "..."
},
"narrativeTranslated": "<string>",
"narrativeTranslatedLang": "<string>",
"extracted": {
"prohibitions": [
"asset freeze",
"travel ban"
],
"flagState": "<string>",
"validFrom": "2023-12-25",
"validUntil": "2023-12-25",
"identifiers": [
"<string>"
],
"lastKnownLocation": {
"place": "<string>",
"observedOn": "2023-12-25"
},
"affiliations": [
"<string>"
],
"subjectStatus": "deceased"
},
"pressReleaseUrl": "<string>",
"pressReleaseSymbol": "SC/16324",
"lastEventAt": "2023-11-07T05:31:56Z",
"lastEventType": "listed",
"firstSeenAt": "2023-11-07T05:31:56Z",
"lastSeenAt": "2023-11-07T05:31:56Z"
}
],
"total": 123
}{
"error": "<string>",
"code": "<string>"
}{
"error": "<string>",
"code": "<string>"
}{
"error": "<string>",
"code": "<string>"
}Buscar designações de sanções da ONU
Busca pessoas, organizações e embarcações designadas na Lista Consolidada de Sanções do Conselho de Segurança da ONU.
Um resultado é uma designação, não uma pessoa: a chave é o sourceRefNumber (ex.: QDi.436). A busca por nome (search) cobre o nome principal e os apelidos, por substring normalizada — sem acento, sem distinção de maiúsculas e sem pontuação, então qadi encontra QADI.
Diferente dos endpoints /search/*, este é um GET com filtros na query string e não aceita a gramática de keywords booleanas.
curl --request GET \
--url https://api.nomos.pro/watchlist \
--header 'x-api-key: <api-key>'import requests
url = "https://api.nomos.pro/watchlist"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.nomos.pro/watchlist', 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.nomos.pro/watchlist",
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-api-key: <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://api.nomos.pro/watchlist"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<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://api.nomos.pro/watchlist")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nomos.pro/watchlist")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"sourceRefNumber": "QDi.436",
"source": "un_sc",
"sourceDataId": "<string>",
"designationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subjectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subjectType": "individual",
"primaryName": "<string>",
"nameOriginalScript": "<string>",
"nationalities": [
"<string>"
],
"aliases": [
{
"name": "<string>",
"quality": "good"
}
],
"regime": "Al-Qaida",
"committee": "1267",
"status": "listed",
"listedOn": "2023-12-25",
"delistedOn": "2023-12-25",
"lastReviewedOn": "2023-12-25",
"sourceLastUpdated": "2023-12-25",
"lastUpdatedOn": "2023-12-25",
"narrative": "<string>",
"narrativeTranslations": {
"pt-BR": "..."
},
"narrativeTranslated": "<string>",
"narrativeTranslatedLang": "<string>",
"extracted": {
"prohibitions": [
"asset freeze",
"travel ban"
],
"flagState": "<string>",
"validFrom": "2023-12-25",
"validUntil": "2023-12-25",
"identifiers": [
"<string>"
],
"lastKnownLocation": {
"place": "<string>",
"observedOn": "2023-12-25"
},
"affiliations": [
"<string>"
],
"subjectStatus": "deceased"
},
"pressReleaseUrl": "<string>",
"pressReleaseSymbol": "SC/16324",
"lastEventAt": "2023-11-07T05:31:56Z",
"lastEventType": "listed",
"firstSeenAt": "2023-11-07T05:31:56Z",
"lastSeenAt": "2023-11-07T05:31:56Z"
}
],
"total": 123
}{
"error": "<string>",
"code": "<string>"
}{
"error": "<string>",
"code": "<string>"
}{
"error": "<string>",
"code": "<string>"
}Authorizations
Chave de API da Nomos. Clientes criam e gerenciam chaves em https://nomos.pro/organization/developers (Organização → Desenvolvedores).
Query Parameters
Resultados por página. Máximo 100.
1 <= x <= 100Deslocamento da paginação (não é número de página).
x >= 0Nome a procurar, no nome principal e nos apelidos.
listed = designação em vigor; delisted = removida da lista. Omitido devolve as duas.
listed, delisted individual = pessoa física; entity = organização ou embarcação.
individual, entity Regime de sanções. Comparação exata — use os valores exatamente como listados.
Al-Qaida, Taliban, DPRK, Iran, Iraq, DRC, Sudan, Libya, Somalia, CAR, Haiti, Yemen, GB, SouthSudan Mantém só designações que carregam esta medida restritiva, na redação da própria ONU (em inglês).
true omite designações cujo texto da ONU registra o indivíduo como morto. Elas continuam em vigor — o filtro é de tela, não de status.
recently_changed = alteradas mais recentemente (pelas datas da própria ONU); name = ordem alfabética; listed_on = designadas há menos tempo primeiro.
recently_changed, name, listed_on