Developer API

Build with the Normex.ai API

A powerful, RESTful API that gives you full access to the Normex.ai platform. Build custom integrations and automate your compliance workflows.

Quick Start

Get up and running with the Normex.ai API in minutes. Here's everything you need to make your first API call.

1

Get your API key

Sign up for an account and generate your API key from the dashboard.

2

Make your first request

Use the code examples to authenticate and fetch your policies.

3

Build your integration

Explore the full API reference to build powerful integrations.

terminal
# 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
  }
}

API Features

Everything you need to build robust integrations.

OAuth 2.0 Authentication

Secure authentication with API keys and OAuth 2.0 tokens.

Real-time Webhooks

Receive instant notifications when events occur in your account.

Full CRUD Operations

Create, read, update, and delete all resources via the API.

Rate Limiting

Generous rate limits with clear headers for tracking usage.

SDK Libraries

Official SDKs for Python, Node.js, Ruby, and more.

Interactive Docs

Try API calls directly from our interactive documentation.

API Endpoints

Explore the available resources and operations.

GET/v1/policiesList all policies
POST/v1/policiesCreate a new policy
GET/v1/policies/:idGet policy details
PUT/v1/policies/:idUpdate a policy
DELETE/v1/policies/:idDelete a policy
GET/v1/auditsList all audits
POST/v1/auditsCreate a new audit
GET/v1/risksList risk assessments
GET/v1/frameworksList compliance frameworks

Ready to start building?

Sign up for a free account and get your API key today.

Get Started Free