Discover/ICIJ API
live

ICIJ APIoffshoreleaks.icij.org

Search entities, officers, and financial connections across Panama Papers, Pandora Papers, and more via the ICIJ Offshore Leaks API.

Endpoint health
verified 4d ago
search
get_database_info
list_entities
list_officers
get_node_details
5/5 passing latest checkself-healing
Endpoints
5
Updated
21d ago

What is the ICIJ API?

This API provides structured access to the ICIJ Offshore Leaks Database through 5 endpoints, covering entities, officers, intermediaries, addresses, and their relationship graphs across investigations including the Panama Papers and Pandora Papers. The get_node_details endpoint returns a full connection graph — nodes with categories, properties, and statistics, plus typed edges linking related records. The search endpoint accepts keywords and an optional category filter to narrow results to specific record types.

Try it
Maximum number of results to return (1-100)
Search keyword (e.g., company name or individual name)
Category filter: 0=Entity, 1=Officer, 2=Intermediary, 3=Address, 4=Other
api.parse.bot/scraper/a47ab11d-1882-4b7f-9266-a0ef9239a071/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/a47ab11d-1882-4b7f-9266-a0ef9239a071/search?limit=5&query=offshore&category=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace offshoreleaks-icij-org-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: ICIJ Offshore Leaks Database — search, list, and inspect nodes."""
from parse_apis.icij_offshore_leaks_database_api import (
    OffshoreLeaks, Category, NodeNotFound
)

client = OffshoreLeaks()

# Search for entities related to "offshore" filtered to Entity category
for result in client.searchresults.search(query="offshore", category=Category.ENTITY, limit=3):
    print(result.name, result.score)

# List entities from the database
entity = client.entities.list(size=5, limit=1).first()
if entity:
    print(entity.id, entity.properties.name, entity.properties.status)

# Get full node details with connection graph
try:
    node = client.nodes.get(id=str(entity.id))
    print(node.id, node.categories)
except NodeNotFound as exc:
    print(f"Node not found: {exc}")

# List officers
for officer in client.officers.list(size=5, limit=3):
    print(officer.id, officer.properties.name, officer.properties.data_source)

# Get database metadata
info = client.databaseinfos.get()
print(info.title, info.license)

print("exercised: searchresults.search / entities.list / nodes.get / officers.list / databaseinfos.get")
All endpoints · 5 totalmissing one? ·

Full-text search across entities, officers, intermediaries, and addresses in the ICIJ Offshore Leaks Database via the Reconciliation API. Results are scored by relevance. An optional category filter narrows by node type. Returns up to `limit` results per call; no server-side pagination beyond that cap.

Input
ParamTypeDescription
limitintegerMaximum number of results to return (1-100)
queryrequiredstringSearch keyword (e.g., company name or individual name)
categoryintegerCategory filter: 0=Entity, 1=Officer, 2=Intermediary, 3=Address, 4=Other
Response
{
  "type": "object",
  "fields": {
    "results": "array of search result objects each containing id, name, description, score, and types"
  },
  "sample": {
    "data": {
      "results": [
        {
          "id": "81026907",
          "name": "Offshore Incorporations Centre",
          "score": 26.67,
          "types": [
            {
              "id": "https://offshoreleaks.icij.org/schema/oldb/address",
              "name": "Address"
            }
          ],
          "description": "Address node extracted from the Paradise Papers - Appleby data."
        }
      ]
    },
    "status": "success"
  }
}

About the ICIJ API

What the API Covers

The ICIJ Offshore Leaks Database aggregates records from major investigative leak datasets — Panama Papers, Pandora Papers, and others listed in the data_sources array returned by get_database_info. The database distinguishes four record types: entities (shell companies, foundations, trusts), officers (individuals or companies with roles in those entities), intermediaries (agents or law firms that set up offshore structures), and addresses. Each record carries a numeric ID used across all endpoints.

Search and Node Details

The search endpoint accepts a query string and an optional category integer (0=Entity, 1=Officer, 2=Intermediary, 3=Address, 4=Other) along with a limit parameter. Results include an id, name, description, relevance score, and types. Pass the returned id to get_node_details to retrieve the full connection graph for that record: the response includes a data array of node objects, each with a linkurious_id, categorized properties, node statistics, and an edges array describing typed relationships to other nodes in the graph.

Bulk Listing Endpoints

list_entities and list_officers support offset-based pagination with a size parameter (max 100 per page) and an offset ceiling of 9900. Entity records expose name, country_codes, data_source, jurisdiction, status, and incorporation_date among their properties. Officer records carry name, country_codes, icij_id, data_source, and valid_until. Both endpoints return a meta object with count, from, and size, plus a links object with first, last, next, and prev URLs for navigation.

Database Metadata

The get_database_info endpoint returns no inputs and provides the database title, a description string, a license identifier, and the full data_sources array listing each investigation name and year. This is useful for validating dataset coverage before bulk querying or building source attribution into an application.

Reliability & maintenanceVerified

The ICIJ API is a managed, monitored endpoint for offshoreleaks.icij.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when offshoreleaks.icij.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official offshoreleaks.icij.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Map the relationship graph of a named offshore entity using get_node_details edges and node properties.
  • Bulk-export officer records with list_officers to build a dataset of individuals named across multiple leak investigations.
  • Screen company names against the database using search with category=0 to check for matches in offshore entity records.
  • Enumerate entities by jurisdiction using list_entities and filtering on the jurisdiction property field.
  • Correlate data_source values across entity and officer records to isolate records from a specific investigation like Pandora Papers.
  • Retrieve icij_id fields from officer records to cross-reference individuals across ICIJ's other published datasets.
  • Retrieve database metadata via get_database_info to programmatically surface license and investigation scope in a research tool.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does the ICIJ Offshore Leaks site have an official developer API?+
Yes. ICIJ publishes a Reconciliation API for the Offshore Leaks Database, documented at https://offshoreleaks.icij.org/docs/api. It covers search and some node data. The Parse API wraps and extends this to include bulk listing endpoints and structured pagination.
What does `get_node_details` return beyond basic record fields?+
It returns a data array where each node object includes a data sub-object with categories, properties (name, country, jurisdiction, source, etc.), and statistics. Crucially, it also includes an edges array describing typed relationships to other nodes — this is what lets you traverse the connection graph between entities, officers, intermediaries, and addresses.
What are the pagination limits on the list endpoints?+
list_entities and list_officers both cap size at 100 records per page and offset at 9900, meaning a maximum of 10,000 records is reachable per endpoint through standard pagination. The meta.count field shows the total number of records in the database for that type, which will typically exceed 10,000. You can fork this API on Parse and revise it to add deeper offset or cursor-based access if your use case requires it.
Does the API expose intermediary records through a dedicated list endpoint?+
Not currently. Intermediaries appear in search results (category=2) and as nodes in connection graphs returned by get_node_details, but there is no list_intermediaries bulk endpoint equivalent to list_entities or list_officers. You can fork this API on Parse and revise it to add the missing endpoint.
How fresh is the data, and does the API reflect newly published investigations?+
The data reflects whatever ICIJ has published in the Offshore Leaks Database at the time of the last sync. The get_database_info endpoint returns a data_sources array that lists the investigations and their years currently included. ICIJ updates the database when new investigations are released, but there is no real-time feed — coverage is tied to ICIJ's own publication schedule.
Page content last updated . Spec covers 5 endpoints from offshoreleaks.icij.org.
Related APIs in Government PublicSee all →
opencorporates.com API
Access comprehensive company registration data, officer details, and filing histories from OpenCorporates across jurisdictions worldwide to research businesses and their leadership. Search for specific companies or officers, retrieve detailed corporate information, and explore filing records to support due diligence, compliance checks, and business intelligence.
occrp.org API
Search and discover investigative journalism from OCCRP.org, including articles, investigations, and projects organized by section and region. Get the latest news updates and detailed information about specific investigations to stay informed on organized crime and corruption reporting.
service.asic.gov.au API
Search and retrieve comprehensive information about Australian financial professionals and entities, including AFS and credit licensees, their representatives, liquidators, auditors, and managed investment schemes. Verify credentials, check regulatory status, and access detailed profiles of financial service providers registered with ASIC.
pappers.fr API
Search French companies and directors to access detailed business profiles, ownership structures, trademark information, and legal filings all in one place. Build professional networks, track company leadership, and monitor business intelligence across France's official registry data.
icrimewatch.net API
Search for sex offenders across multiple jurisdictions and retrieve detailed information including their physical descriptions, offenses, and dates of birth. Discover registered agencies and access comprehensive offender profiles to help protect your community.
violationtracker.goodjobsfirst.org API
Search corporate violations and regulatory penalties across companies, industries, and agencies to research misconduct records and enforcement actions. Get detailed information about specific violations, parent company compliance histories, and regulatory agency enforcement patterns.
projects.propublica.org API
Search and retrieve comprehensive information on over 1.9 million US nonprofits, including their financial data, tax filings, grants, executive compensation, and organizational classifications. Access detailed nonprofit profiles by name or EIN to discover funding sources, operational metrics, and key leadership details.
search.sunbiz.org API
Search the Florida Sunbiz corporate registry to find detailed business registration information by company name, officer, address, or EIN, and retrieve complete entity details including filing history, registered agents, and officer names.