Batch sanctions and debarment screening
Batch sanctions and debarment screening: screen up to 25 names in a single paid call against the same eight lists as the single-name route, returning a per-name verdict with provenance. Intended for onboarding and portfolio workflows where one call per name is impractical. Typical latency under 2 s; a pathological batch of very common names can take up to ~17 s, so allow a 30 s client timeout.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
686 msmedian answer time
$0.25listed price per call
$0.25price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://bryan-hermes.lenok-gorgon.ts.net:8443/v1/sanctions/screen/batch
| Category | Company and compliance |
|---|---|
| Provider host | bryan-hermes.lenok-gorgon.ts.net |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.25 | 686 ms |
Example input (from the provider)
{
"body": {
"names": [
"Ayman Al Zawahiri",
"HEBEI CONSTRUCTION GROUP CORPORATION LIMITED"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"country": {
"description": "country applied to corroborate every name",
"type": "string"
},
"date_of_birth": {
"description": "DOB applied to every name; omit unless screening a single person",
"type": "string"
},
"limit_per_name": {
"description": "max candidates returned per name (default 3)",
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"names": {
"description": "names to screen (required, max 25 per call)",
"items": {
"type": "string"
},
"type": "array"
},
"threshold": {
"maximum": 0.99,
"minimum": 0.1,
"type": "number"
}
},
"required": [
"names"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}