Verification Links
"Verify with Cleared" Flow
Embed a "Verify with Cleared" button in your app—similar to "Sign in with Google". Users click, get redirected to a page with your branding, complete verification, then return to your app with a secure token.
How It Works
- 1Add verification link button to your website/app
- 2User clicks button → Redirected to Cleared's branded verification page
- 3User completes verification (identity, address, etc.)
- 4Cleared sends webhook to your backend with results
- 5User redirected back to your app with verification token
- 6Your app retrieves verification details using token
Best For
Quick integration (10 minutes setup)
No UI development needed
OAuth-style flow
Mobile and web apps
Simple verification requirements
All sizes of businesses
Technical Implementation
Create Verification Link
JavaScript
// Create verification link
POST /api/v1/merchant/verification-links/create
{
"linkTitle": "Customer Verification",
"linkId": "customer-kyc",
"verificationType": "identity",
"destination": "https://yoursite.com/verification/complete",
"webhookConfig": {
"url": "https://yourapi.com/webhooks/cleared"
}
}
// Add button to your site
<a href="https://cleared.id/v/customer-kyc">
Verify with Cleared
</a>
// Webhook receives results
POST https://yourapi.com/webhooks/cleared
{
"event": "cleared",
"firstName": "John",
"trn": "123-456-789"
}