CLI
The aicompliancepulse CLI brings the weekly pulse and regulation search to your terminal and scripts.
Install
npm install -g aicompliancepulse
Commands
- aicompliancepulse today — the latest pulse
- aicompliancepulse search <query> — search regulations
Authentication
Without a key, requests run anonymously (100 req/min shared quota). Supply a key to get a dedicated 120 req/min bucket. Get a key from API keys.
Pass the key with the --api-key flag or set the AICOMPLIANCEPULSE_API_KEY environment variable. The flag takes precedence over the environment variable.
Flag
aicompliancepulse today --api-key acp_live_<key> aicompliancepulse search "GDPR fines" --api-key acp_live_<key>
Environment variable
export AICOMPLIANCEPULSE_API_KEY=acp_live_<key> aicompliancepulse today aicompliancepulse search "AI Act"
Error codes
- 401 — invalid or missing API key
- 429 — rate limit exceeded; wait and retry
- 503 — auth service temporarily unavailable; retry shortly
Prefer HTTP? REST API docs. Using an AI agent? MCP server docs.