IP विश्लेषण
Didit IP विश्लेषण VPN, प्रॉक्सी, Tor उपयोग और असामान्य नेटवर्क व्यवहार का पता लगाने के लिए हर उपयोगकर्ता कनेक्शन का वास्तविक समय में मूल्यांकन करता है। यह हर सत्यापन प्रवाह में शक्तिशाली धोखाधड़ी संकेत जोड़ता है — स्वचालित रूप से और सुरक्षित रूप से।
दुनिया भर की 1000+ से अधिक कंपनियों का भरोसा
IP जोखिम मूल्यांकन
(तत्काल)
नेटवर्क संकेत
(जोखिम संकेतक)
प्रति सफल सत्यापन
(मुफ़्त मासिक क्रेडिट के बाद)
यह कैसे काम करता है
क्यों Didit IP विश्लेषण
Didit सैकड़ों नेटवर्क-स्तरीय सिग्नल्स का विश्लेषण करता है, जिसमें ASN प्रतिष्ठा, रूटिंग व्यवहार और ऐतिहासिक जोखिम शामिल हैं — सिर्फ़ स्थिर IP ब्लॉकलिस्ट ही नहीं।
IP विश्लेषण डिफ़ॉल्ट रूप से हर सत्यापन और बायोमेट्रिक सत्र को मज़बूत करते हुए, Didit वर्कफ़्लो में बिना किसी अतिरिक्त लागत के स्वचालित रूप से चलता है।
IP विश्लेषण VPN रोटेशन, प्रॉक्सी फ़ार्म और साझा इंफ्रास्ट्रक्चर के ख़िलाफ़ अत्यधिक प्रभावी है, जिनका उपयोग आमतौर पर अकाउंट फ़ार्मिंग और बार-बार होने वाले दुरुपयोग में किया जाता है।

वर्कफ़्लो में स्वचालित रूप से या सीधे API के माध्यम से IP सिग्नल्स का उपभोग करें। अपने जोखिम रणनीति के आधार पर नियम, थ्रेशोल्ड और मैन्युअल समीक्षा कॉन्फ़िगर करें।
पूर्ण पारदर्शिता
कोई 🛠️ सेटअप शुल्क नहीं। कोई 💸 न्यूनतम राशि नहीं। कोई 🎊 आश्चर्य नहीं। बस स्पष्ट मूल्य निर्धारण ✨ केवल पूरी की गई सुविधाओं के लिए चार्ज किया जाता है।

इंटीग्रेट करने में सबसे आसान
Didit को बिना कोड के या एक सिंगल API कॉल के साथ उपयोग करो। मिनटों में लाइव हो जाओ।
मुख्य बिंदु
BUILT FOR AI AGENTS
The only identity platform your AI coding agent can fully integrate — credentials, workflows, webhooks, and production code — without opening a browser.
Paste this into Claude Code, Cursor, or Copilot. Your agent registers for API credentials, creates verification workflows, sets up webhooks, and writes integration code — end to end, from a single copy-paste.
Key points
Integrate Didit identity verification into this project.
Didit is an all-in-one identity platform. Docs: https://docs.didit.me
Base URL: https://verification.didit.me/v3
Auth API: https://apx.didit.me/auth/v2
## Step 1: Get API credentials (no browser needed)
Register programmatically — 2 API calls:
POST https://apx.didit.me/auth/v2/programmatic/register/
Body: { "email": "dev@yourapp.com", "password": "SecurePass123!" }
→ Sends 6-char OTP to email
POST https://apx.didit.me/auth/v2/programmatic/verify-email/
Body: { "email": "dev@yourapp.com", "code": "ABC123" }
→ Returns { api_key, organization, application }
Or login if already registered:
POST https://apx.didit.me/auth/v2/programmatic/login/
Body: { "email": "...", "password": "..." }
→ Returns { access_token, refresh_token }
All subsequent API calls use: x-api-key: YOUR_API_KEY
## Step 2: Create a verification workflow
POST https://verification.didit.me/v3/workflows/
Headers: { "x-api-key": "YOUR_API_KEY", "content-type": "application/json" }
Body: {
"name": "KYC Flow",
"features": {
"id_verification": true,
"passive_liveness": true,
"face_match": true,
"aml_screening": false,
"nfc": false,
"ip_analysis": true,
"phone_verification": false,
"email_verification": false,
"proof_of_address": false,
"age_estimation": false,
"database_validation": false,
"questionnaire": false
}
}
→ Returns { uuid: "workflow_id", ... }
Or list existing workflows: GET /v3/workflows/
## Step 3: Create verification sessions
POST https://verification.didit.me/v3/sessions/
Body: {
"workflow_id": "WORKFLOW_ID",
"vendor_data": "your-internal-user-id",
"callback": "https://yourapp.com/api/didit/webhook"
}
→ Returns {
session_id, session_token, session_number,
url: "https://verify.didit.me/session/TOKEN"
}
Redirect users to the url, or embed via SDK:
- Web: npm install @didit-protocol/sdk-web
- React Native: npx expo install @didit-protocol/sdk-react-native
- iOS: SPM github.com/didit-protocol/sdk-ios
- Android: me.didit:didit-sdk:3.2.0
- Flutter: flutter pub add didit_sdk
## Step 4: Get results
Option A — Webhook (recommended):
Configure callback URL. Didit sends POST with session data when status changes.
Verify webhook signature using your webhook secret (GET /v3/webhook/).
Option B — Poll:
GET https://verification.didit.me/v3/sessions/{session_id}/
Session statuses: Pending → In Progress → Approved | Declined | In Review | Expired
You can also: update status (PATCH /v3/sessions/{id}/status/),
generate PDF reports (POST /v3/sessions/{id}/generate-pdf/),
or delete sessions (DELETE /v3/sessions/{id}/).
## Standalone APIs (call individually without sessions)
POST /v3/id-verification/ — Submit document images, get OCR + authenticity
POST /v3/passive-liveness/ — Verify person is real from selfie
POST /v3/face-match/ — Compare two faces (similarity 0-100)
POST /v3/face-search/ — 1:N search against all approved sessions
POST /v3/age-estimation/ — Estimate age from face
POST /v3/aml-screening/ — Screen against 1,300+ watchlists
POST /v3/proof-of-address/ — Extract + validate address documents
POST /v3/database-validation/ — Government DB checks (18+ countries)
POST /v3/email/send/ + /v3/email/check/ — Email OTP
POST /v3/phone/send/ + /v3/phone/check/ — Phone OTP (SMS/WhatsApp)
## Pricing
Free core KYC: ID Verification + Passive Liveness + Face Match + IP Analysis (500 free/month)
Premium checks: Prepaid credits, no contracts, no minimums, credits never expire.
Details: https://didit.me/pricing
## Rate Limits
300 req/min per method, 600 session creations/min.
On 429: check Retry-After header.
प्रमाणन
हमारा प्लेटफ़ॉर्म सूचना सुरक्षा, डेटा गोपनीयता और बायोमेट्रिक सटीकता के लिए उच्चतम अंतर्राष्ट्रीय मानकों को पूरा करता है।
पूर्ण EU डेटा सुरक्षा अनुपालन
सूचना सुरक्षा प्रबंधन
PAD (लाइवनेस + चेहरा मिलान)
दुनिया भर में भरोसेमंद
उन हज़ारों कंपनियों में शामिल हो जाओ जो अपनी वेरिफिकेशन ज़रूरतों के लिए Didit पर भरोसा करती हैं
IP विश्लेषण FAQ
IP विश्लेषण जोखिम सिग्नल्स की पहचान करने के लिए उपयोगकर्ता के नेटवर्क कनेक्शन का मूल्यांकन करता है, जैसे VPN उपयोग, प्रॉक्सी, Tor नेटवर्क, होस्टिंग प्रदाता और संदिग्ध रूटिंग व्यवहार।
एक निःशुल्क खाता, तत्काल सैंडबॉक्स और हर सुविधा तक पूर्ण पहुँच प्राप्त करें। कोई अनुबंध नहीं। कोई बिक्री कॉल नहीं। कोई क्रेडिट कार्ड आवश्यक नहीं।