Skip to main content
Use these once your first request works. Each quickstart is a small workflow you can keep in an integration, not a throwaway sample.

Pick the next job

Compare 13F positions

Compare the latest two 13F reports for one institutional manager.

Compare executive compensation

Compare the latest two compensation disclosures for one issuer.

Search offerings activity

Pull recent S-1 and 424B prospectus activity without staying in EDGAR all day.

Inspect billing posture

Read billing state, public rates, and quote a workflow with an API key.

Compare 13F positions

Use this when you know the institutional manager CIK and want the latest quarter-over-quarter position changes.
curl -X POST \
  -H "content-type: application/json" \
  -H "x-api-key: $SECAPI_API_KEY" \
  https://api.secapi.ai/v1/owners/13f/compare \
  -d '{"cik":"0001067983","limit":25}'

Compare executive compensation

Use this when you want the latest year-over-year compensation comparison for one issuer.
curl -X POST \
  -H "content-type: application/json" \
  -H "x-api-key: $SECAPI_API_KEY" \
  https://api.secapi.ai/v1/compensation/compare \
  -d '{"ticker":"NVDA","limit":10}'

Search offerings activity

Use this when you want recent registration statements or prospectus filings as structured rows.
curl -H "x-api-key: $SECAPI_API_KEY" \
  "https://api.secapi.ai/v1/offerings?forms=S-1,424B4&limit=10"

Inspect billing and quote a workflow

API keys can read billing state and quote usage. They cannot start Checkout, open the Billing Portal, save payment methods, enable PAYG, top up credits, or change budgets.
curl -H "x-api-key: $SECAPI_API_KEY" \
  "https://api.secapi.ai/v1/billing"

curl -H "x-api-key: $SECAPI_API_KEY" \
  "https://api.secapi.ai/v1/billing/rates"

curl -X POST \
  -H "content-type: application/json" \
  -H "x-api-key: $SECAPI_API_KEY" \
  https://api.secapi.ai/v1/billing/quote \
  -d '{"path":"/v1/offerings","method":"GET","units":10}'
For browser-session billing changes, sign in at https://secapi.ai/login and use the dashboard Billing and Credits area. Checkout, Billing Portal, payment-method setup, PAYG activation, credit top-ups, auto top-up, refunds, and budget changes require a WorkOS browser session with billing permissions.