Explore the interactive API reference
Updated
Before writing any integration code, it helps to explore CompliAPI's endpoints interactively. There are two main resources for this: the interactive API reference and the free SDN search tool.
Interactive API reference
The full OpenAPI reference is available at api.compliapi.com/api/v1/docs. It documents every endpoint, its parameters, and its response shape. You can make live requests directly from the browser to see real responses against your own token. The underlying OpenAPI spec is also published at compliapi.com/openapi.json, which you can import into tools like Postman or use to generate client libraries.
Free SDN search tool
If you want to explore the sanctions data itself without writing any code, the free SDN search tool at compliapi.com/tools/sdn-search lets you search across all enabled lists by name, alias, or identifier. It supports both fuzzy matching and regex — wrap a query in slashes (e.g. /^0x098b/) to run it as a regex search, or enter a plain query for fuzzy matching. This is a useful way to verify that a specific entity or address appears on a list before building your screening logic.
Tips
- The search tool does not require an account and results are never stored or audit-logged.
- For production screening with exact-match semantics, a
sanctioned/flaggedverdict, and a full audit trail, use the screening endpoints rather than the search tool. - Rate limits on the search endpoint are per client IP; the interactive API reference uses your API token, so requests count against your quota.