Example Request
curl -X POST https://api.rightdocs.net/v1/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: multipart/form-data" \
-F "document=@contract.pdf" \
-F "type=contract"
# Response
{
"id": "ver_1234567890",
"status": "complete",
"trust_score": 87,
"risk_level": "low",
"findings": [
{
"type": "metadata_check",
"status": "pass",
"confidence": 0.95
},
{
"type": "visual_forensics",
"status": "pass",
"confidence": 0.92
}
]
}API Endpoints
Core endpoints for document verification and analysis
POST
/v1/verifyVerify a document and get fraud analysis
GET
/v1/reports/{id}Retrieve a verification report
POST
/v1/batchSubmit multiple documents for batch processing
GET
/v1/status/{id}Check verification job status
Real-Time Verification
Get instant results with average response times under 2 seconds for standard documents.
Structured Responses
Clean JSON responses with trust scores, risk levels, and detailed findings.
Webhooks Support
Receive real-time notifications when verification jobs complete.
Secure Authentication
API key authentication with optional OAuth 2.0 for enterprise clients.