GnistAI GnistAI
Log in

ICIJ Offshore Leaks

Search the ICIJ Offshore Leaks Database — Panama Papers, Paradise Papers, Pandora Papers. 800K+ offshore entities, officers, intermediaries, and addresses from leaked financial documents.

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: ICIJ Offshore Leaks Database (Reconciliation API)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/offshore-leaks/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-offshore-leaks": {
      "url": "https://context.gnist.ai/mcp/offshore-leaks/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/offshore-leaks/" \
  -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": "search_offshore_leaks", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/offshore-leaks/

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/offshore-leaks/search_offshore_leaks?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/offshore-leaks/search_offshore_leaks",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc offshore-leaks

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

Install
pip install gnistai

Available Tools (3)

search_offshore_leaks
Search the ICIJ Offshore Leaks Database for entities, officers, and intermediaries.
ParameterTypeRequiredDescription
querystringrequiredSearch query — name of entity, person, or intermediary. Example: 'Mossack Fonseca'.
node_typestringoptionalNode type to search: Entity (companies/trusts), Officer (directors/shareholders), Address, Intermediary (law firms/agents), Other, Node (all). (default: "Entity")
countryanyoptionalISO country code filter. Example: 'PA' for Panama, 'VGB' for British Virgin Islands.
sourcestringoptionalInvestigation to search: all, panama-papers, paradise-papers, pandora-papers, offshore-leaks, bahamas-leaks. (default: "all")
limitintegeroptionalMax results (1-25). (default: 10)
get_offshore_entity
Get detailed properties for an offshore leaks node by ID.
ParameterTypeRequiredDescription
node_idstringrequiredNode ID from a search result. Example: '10022201'.
node_typestringoptionalNode type: Entity, Officer, Address, Intermediary, Other. (default: "Entity")
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related