GnistAI GnistAI
Log in

Compliance Screening

Screen entities against global sanctions lists, offshore leak databases, and corporate registries in a single API call. Instant compliance checks for KYC, AML, and due diligence workflows.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 Legal

Data source: OFAC, EU, UN, UK OFSI, ICIJ Offshore Leaks, GLEIF

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/compliance-screening/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-compliance-screening": {
      "url": "https://context.gnist.ai/mcp/compliance-screening/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/compliance-screening/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "screen_entity", "arguments": {"name": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/compliance-screening/

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/compliance-screening/screen_entity?name=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/compliance-screening/screen_entity",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "name": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc compliance-screening

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (3)

screen_entity
Screen an entity for sanctions, offshore leaks, and corporate registry hits.
ParameterTypeRequiredDescription
namestringrequiredEntity name to screen — person, company, or organization.
entity_typeanyoptionalFilter: 'individual', 'entity', or 'vessel'.
countryanyoptionalFilter by country name or code.
thresholdnumberoptionalSanctions fuzzy-match threshold (50-100). Lower = more results. (default: 80.0)
limitintegeroptionalMax results per source. (default: 10)
list_compliance_sources
List all compliance data sources, their coverage, and data types.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related