Cleared® is a digital verification and signature platform that provides trusted solutions for businesses, consumers, and organisations.
Our services include identity, address, income, employment, qualification, background, and company verification, as well as digital document signing, onboarding workflows, and compliance management.
This repository hosts the official Cleared API documentation in Markdown format. It is intended for developers and integrators who wish to embed Cleared's verification and trust services into their own applications, portals, or workflows.
New to the Cleared API? Follow these steps:
- Introduction – Understand what the API offers and how it works
- Authentication – Learn how to authenticate your requests
- Registration & Onboarding – Register your organisation and get API access
- Endpoints – Explore the API structure and common patterns
| Document | Description |
|---|---|
| Introduction | Welcome to the Cleared API - overview and key concepts |
| Authentication | API key generation, JWT tokens, and security best practices |
| Registration | Complete registration and onboarding walkthrough |
| Endpoints | Base URLs, request/response formats, pagination, and filtering |
Verify customer identities with government-issued documents and biometric facial matching.
| Document | Description |
|---|---|
| Identity API Overview | Service introduction, features, and workflow |
| Identity Endpoints | 35 endpoints for ID verification, TRN validation, face auth, and account recovery |
Key Features: Passport/ID/driver's licence verification, liveness detection, biometric matching, duplicate detection, TRN verification
Validate residential and business addresses with proof of address documents.
| Document | Description |
|---|---|
| Address API Overview | Service introduction, features, and workflow |
| Address Endpoints | 13 endpoints for individual and company address verification |
Key Features: Proof of address validation, GPS verification, company address checks, due diligence requests
Create and manage verification requests sent to customers.
| Document | Description |
|---|---|
| Initiate Verification | Complete guide to creating verification requests |
| Manage Requests | List, view, withdraw, and extend verification requests |
Key Features: Multi-service requests, automatic customer lookup, expiration management, in-person mode, request bundling
Create shareable verification links for customer self-service verification.
| Document | Description |
|---|---|
| Verification Links API | Service introduction and key features |
| Verification Links Endpoints | 7 endpoints for link management and tracking |
Key Features: Shareable URLs, custom branding, webhook integration, submission tracking
Documentation coming soon
Services: Criminal records, credit history, employment verification, reference checks
Documentation coming soon
Services: Income validation, employment history, salary verification
Documentation coming soon
Services: Education verification, professional certifications, reference checks
Documentation coming soon
Services: Business registration, TRN validation, corporate identity checks
Secure document signing with legal validity and tamper-proof sealing.
| Document | Description |
|---|---|
| Signatures Overview | Introduction to digital signature services |
| Merchant Documents | 24 endpoints for document management and tracking |
| Envelopes | 16 endpoints for multi-document signing packages |
| Document Templates | 9 endpoints for reusable document templates |
| Envelope Templates | 7 endpoints for reusable envelope packages |
Total Endpoints: 56 endpoints
Key Features: PDF signing, certificate-based signatures, multi-signer workflows, template system, audit trails
Create branded onboarding pages combining lead capture, verifications, and forms.
| Document | Description |
|---|---|
| Onboarding Pages API | Complete guide with 12 endpoints |
Key Features: Visual page builder, lead capture forms, custom fields, verification workflows, submission tracking, logo management
Use Cases: Loan applications, rental applications, employee onboarding, tenant screening
Real-time notification system for verification events and system announcements.
| Document | Description |
|---|---|
| Merchant Updates API | Complete guide with 6 endpoints |
Key Features: Real-time updates, unread tracking, priority levels, filtering, webhook alternative
Update Types: Verification updates, system announcements, request notifications
- Base URL:
https://cleared.id/api/v1/merchant - Admin Portal:
https://qa.cleared.id/portal - Purpose: Integration testing with test data
- Cost: Free (unlimited testing)
- Base URL:
https://cleared.id/api/v1/merchant - Admin Portal:
https://cleared.id/portal - Purpose: Live operations with real data
- Cost: Credit-based pricing
# Verify API key
curl -X GET https://cleared.id/api/v1/merchant/auth/verify \
-H "Authorization: Bearer YOUR_API_KEY"curl -X POST https://cleared.id/api/v1/merchant/identity/verification/initiate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "John Smith",
"emailAddress": "john@example.com",
"verificationRequests": [
{
"type": "identity",
"required": true
}
]
}'curl -X POST https://cleared.id/api/v1/merchant/verification-links/create \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"linkTitle": "Customer Verification",
"verificationType": "identity",
"destination": "https://yoursite.com/complete"
}'curl -X POST https://cleared.id/api/v1/merchant/screening/onboarding/pages/create \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "pageTitle=Loan Application" \
-F "requiredVerifications=[\"identity\",\"address\",\"income\"]"curl -X POST https://cleared.id/api/v1/merchant/signatures/documents/create \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "document=@contract.pdf" \
-F "signers=[{\"name\":\"John Smith\",\"email\":\"john@example.com\"}]"| Category | Files | Endpoints | Description |
|---|---|---|---|
| Core API | 4 files | - | Authentication, endpoints, registration |
| Identity Verification | 2 files | 35 endpoints | ID verification, biometrics, TRN |
| Address Verification | 2 files | 13 endpoints | Address validation, GPS checks |
| Verification Requests | 2 files | 5 endpoints | Create and manage requests |
| Verification Links | 2 files | 7 endpoints | Shareable verification URLs |
| Digital Signatures | 5 files | 56 endpoints | Document and envelope signing |
| Onboarding Pages | 1 file | 12 endpoints | Custom onboarding workflows |
| Merchant Updates | 1 file | 6 endpoints | Real-time notifications |
Total: 23 files, 151 endpoints documented
api-docs/
├── README.md # This file
├── introduction.md # Getting started
├── authentication.md # API keys and security
├── registration.md # Account registration
├── endpoints.md # API structure
│
├── initiate-verification.md # Create verification requests
├── verification-requests-management.md # Manage requests
├── merchant-updates.md # Notification system
├── onboarding-pages.md # Onboarding workflows
│
├── identity/
│ ├── identity-api.md # Identity service overview
│ └── identity-endpoints.md # Identity endpoints (35)
│
├── address/
│ ├── address-api.md # Address service overview
│ └── address-endpoints.md # Address endpoints (13)
│
├── verification-links/
│ ├── verification-links-api.md # Links overview
│ └── verification-links-endpoints.md # Links endpoints (7)
│
├── document-signatures/
│ ├── README.md # Signatures overview
│ ├── merchant-signature-documents.md # Merchant endpoints (24)
│ ├── envelopes.md # Envelopes (16)
│ ├── document-templates.md # Doc templates (9)
│ └── envelope-templates.md # Envelope templates (7)
│
├── criminal-records/
│ └── introduction.md # Coming soon
│
├── income/
│ └── introduction.md # Coming soon
│
└── references/
└── introduction.md # Coming soon
- Create verification request (Initiate Verification)
- Customer completes identity verification
- Receive updates (Merchant Updates)
- Retrieve verification results
- Create onboarding page (Onboarding Pages)
- Customer fills lead capture form
- Customer completes identity + address + income verification
- Review submission and results
- Create verification link (Verification Links)
- Share link with potential tenant
- Tenant completes identity + address + reference checks
- Receive webhook notification
- Review results and approve/deny
- Create document (Document Signatures)
- Add signers with email addresses
- Send for signature
- Track signing progress
- Download signed document with certificate
- Initiate identity + address verification
- Monitor request status
- Receive clearance notification
- Store verification results for compliance
- API Overview – Start here for an introduction
- Authentication Guide – Security and API keys
- Endpoint Reference – API structure and patterns
- Service Guides – Detailed documentation for each service
- Email: support@cleared.id
- Admin Portal: https://cleared.id/admin
- Status Page: https://status.cleared.id
- Website: https://cleared.id
- API Changelog (coming soon)
- SDK Libraries (coming soon)
- Postman Collection (coming soon)
- Integration Examples (coming soon)
- Developer Forum (coming soon)
- Bearer token authentication
- JWT-based API keys
- Key rotation support
- IP whitelisting available
- GDPR compliant
- CCPA compliant
- POPIA compliant
- SOC 2 Type II certified (in progress)
- ISO 27001 certified (in progress)
- Always use HTTPS
- Never expose API keys in client-side code
- Implement webhook signature verification
- Store customer data securely
- Follow data retention policies
- ✅ RESTful API design
- ✅ JSON request/response format
- ✅ Comprehensive error messages
- ✅ Pagination support
- ✅ Filtering and search
- ✅ Webhook notifications
- ✅ Audit logging
- ✅ Rate limiting
- ✅ Sandbox environment
- ✅ Multi-service requests
- ✅ Automatic customer lookup
- ✅ User auto-creation
- ✅ Email/SMS notifications
- ✅ Custom expiration times
- ✅ In-person verification mode
- ✅ Batch processing support
- ✅ Real-time status updates
- ✅ Custom onboarding pages
- ✅ Lead capture forms
- ✅ Shareable verification links
- ✅ Custom branding
- ✅ Multi-step workflows
- ✅ Template system
- ✅ Submission tracking
- ✅ PDF document signing
- ✅ Certificate-based signatures
- ✅ Multi-signer workflows
- ✅ Sequential/parallel signing
- ✅ Template system
- ✅ Audit trails
- ✅ Legal validity
- ✨ Onboarding Pages API - Create complete onboarding workflows
- ✨ Merchant Updates API - Real-time notification system
- ✨ Initiate Verification API - Streamlined request creation
- ✨ Verification Links API - Shareable verification URLs
- 🔜 Background Checks API
- 🔜 Income Verification API
- 🔜 Reference Checks API
- 🔜 Webhook Management UI
- 🔜 GraphQL API
- 🔜 SDK Libraries (JavaScript, Python, PHP)
This documentation is maintained by the Cleared team. If you find errors or have suggestions:
- Report Issues: Contact support@cleared.id
- Request Features: Submit via your Admin Portal
- Provide Feedback: Share during integration process
- Join Beta: Request early access to new features
By using the Cleared API, you agree to:
- Comply with all applicable data protection regulations (GDPR, CCPA, POPIA)
- Use the API only for legitimate business purposes
- Protect user data and privacy
- Maintain secure storage of API credentials
- Follow responsible disclosure for security issues
Full Terms: https://cleared.id/terms
Privacy Policy: https://cleared.id/privacy
SLA: https://cleared.id/sla
- Check this documentation
- Review the specific service guide
- Search our knowledge base
- Check the status page for incidents
- Technical Support: support@cleared.id
- Sales: sales@cleared.id
- Billing: billing@cleared.id
- Security: security@cleared.id
- Critical Issues: < 1 hour
- High Priority: < 4 hours
- Normal Priority: < 24 hours
- Low Priority: < 48 hours
- API Integration Bootcamp (coming soon)
- Best Practices Workshop (coming soon)
- Security & Compliance Training (coming soon)
- Cleared Certified Developer (coming soon)
- Cleared Certified Architect (coming soon)
Ready to get started? Begin with Introduction →
Last updated: October 19, 2025
Version: 2.0
© 2025 Cleared®. All rights reserved.