Our API provides all the tools you need to create powerful integrations
Clean, predictable RESTful endpoints with comprehensive JSON responses. Easy to understand and implement.
Industry-standard OAuth 2.0 and API key authentication. Keep your data safe and secure.
Real-time webhooks for portal events. Get instant notifications when important actions occur.
Comprehensive guides, code examples, and interactive API reference to get you started quickly.
Get started with the Nocean API in minutes. Our SDKs support JavaScript/TypeScript, Python, and Ruby.
Sign up and generate your API key from the dashboard
Use npm, pip, or gem to install the Nocean SDK
Create a portal, track analytics, or manage templates
// Initialize Nocean API Client
import { NoceanAPI } from '@nocean/api';
const nocean = new NoceanAPI({
apiKey: 'your_api_key_here'
});
// Create a new portal
const portal = await nocean.portals.create({
title: 'Client Proposal',
template: 'sales-proposal',
recipient: {
email: 'client@example.com',
name: 'John Doe'
}
});
console.log('Portal created:', portal.url);Explore our complete API reference with interactive examples for every endpoint.