Developers · API

Compliance primitives for Singapore companies, over an API.

The same engine that powers CorpSec AI — resolution drafting, KYC/AML screening under the CSP Act 2024, and ACRA deadline tracking — is being made available as an API for platforms and AI agents to build on. The API is in private beta. Request access below.

Status

Private beta public availability · coming soon

We’re onboarding a small set of design partners while the API surface stabilises. The shapes below are indicative of the intended interface, not a finalised contract — endpoints, fields and auth will be confirmed for beta participants. There is no public, self-serve key yet.

What you can build

Three compliance primitives.

Document generation

Generate board and shareholder resolutions and ACRA-ready filings with the correct statutory wording, returned as structured data and a document file.

KYC / AML screening

Screen customers and beneficial owners against sanctions and PEP lists, with an explainable risk rating and a CDD dossier — the CSP Act 2024 duties as an endpoint.

Deadline tracking

Compute FYE, Annual Return and AGM deadlines for a company from its ACRA data, and subscribe to upcoming-deadline events across a book.

The shape

A minimal, honest sketch.

Indicative only — the real contract is confirmed with beta partners. Base URL, auth and exact fields are placeholders.

Base URL api.corpsec.ai/v1 · coming soon · Auth: bearer API key issued to beta partners auth scheme · coming soon.

# Draft a directors' resolution  (indicative — beta)
POST /v1/documents/resolutions
Authorization: Bearer $CORPSEC_API_KEY

{
  "company_uen": "2021xxxxxB",
  "type": "appoint_director",
  "params": { "name": "...", "effective_date": "2026-07-01" }
}

# => 200: { document_id, status: "drafted", docx_url, fields }
# Screen a beneficial owner (KYC / AML)  (indicative — beta)
POST /v1/screening

{
  "subject": { "name": "...", "dob": "...", "nationality": "SG" },
  "lists": ["ofac", "un", "eu", "mas", "pep"]
}

# => 200: { risk: "low"|"medium"|"high", hits: [...], dossier_url }

The endpoints, request/response fields and base URL above are illustrative sketches marked placeholder · coming soon and will change. Do not build against them until you are onboarded to the beta and given the current reference.

For AI agents

Agent-friendly by design.

The public site is static/SSR and login-free, and we publish an llms.txt plus a structured resource cluster so autonomous agents can read and cite CorpSec AI cleanly. The API is intended to be callable by agents as a tool — deterministic inputs, structured outputs, and a documented action surface.

  • Structured JSON in, structured JSON out — no scraping.
  • Human-in-the-loop is preserved: generated filings still require sign-off.
  • MCP / tool-definition surface on the roadmap · coming soon.

Request beta access.

Tell us what you want to build and roughly what volume you expect. We'll send the current API reference and onboard you if it's a fit.

developers@corpsec.ai address · coming soon. CorpSec AI is a tool that supports compliance; API consumers remain responsible for their own regulatory obligations.