Getting started
1 · First API call
Put your key in the X-API-KEY header — that's the whole auth story:
curl -H "X-API-KEY: nc_live_..." https://api.nordcap.dev/financials/income-statements?ticker=CURAS
Six data endpoints: /tickers · /company/facts · /financials/income-statements · /filings · /news · /insider-trades
2 · Use it in your AI assistant (MCP)
Claude.ai / Desktop: Settings → Connectors → Add custom connector → paste https://mcp.nordcap.dev/mcp (leave advanced fields empty). Claude Code:
claude mcp add --transport http nordcap https://mcp.nordcap.dev/mcp
3 · Webhooks (Quant & Fund)
Get pushed instead of polling — register an HTTPS endpoint and we POST on every new press release, insider trade or annual report. Each delivery is HMAC-signed.
curl -X POST https://api.nordcap.dev/webhooks/destinations -H "X-API-KEY: nc_live_..." -H "Content-Type: application/json" -d '{"url":"https://your-app.com/hook","event_type":"insider_trade.created"}'
Full reference — payloads, signature verification in Python/Node, retries, error codes: nordcap.dev/docs