A powerful, RESTful API that gives you full access to the Normex.ai platform. Build custom integrations and automate your compliance workflows.
Get up and running with the Normex.ai API in minutes. Here's everything you need to make your first API call.
Sign up for an account and generate your API key from the dashboard.
Use the code examples to authenticate and fetch your policies.
Explore the full API reference to build powerful integrations.
# List all policies
curl -X GET "https://api.normex.ai/v1/policies" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
# Response
{
"data": [
{
"id": "pol_abc123",
"name": "Information Security Policy",
"status": "active",
"version": "2.1",
"framework": "ISO 27001",
"lastUpdated": "2026-01-15T10:30:00Z"
},
{
"id": "pol_def456",
"name": "Data Protection Policy",
"status": "draft",
"version": "1.0",
"framework": "GDPR"
}
],
"meta": {
"total": 24,
"page": 1,
"limit": 20
}
}Everything you need to build robust integrations.
Secure authentication with API keys and OAuth 2.0 tokens.
Receive instant notifications when events occur in your account.
Create, read, update, and delete all resources via the API.
Generous rate limits with clear headers for tracking usage.
Official SDKs for Python, Node.js, Ruby, and more.
Try API calls directly from our interactive documentation.
Explore the available resources and operations.
/v1/policiesList all policies/v1/policiesCreate a new policy/v1/policies/:idGet policy details/v1/policies/:idUpdate a policy/v1/policies/:idDelete a policy/v1/auditsList all audits/v1/auditsCreate a new audit/v1/risksList risk assessments/v1/frameworksList compliance frameworks