Our advanced algorithm examines image metadata to identify manipulated, AI-generated, or fraudulent photos with 98% accuracy.
Identify images created by AI tools like DALL-E, Midjourney, or Stable Diffusion with signature analysis.
Analyze camera data, GPS information, and image formats to verify authenticity.
Get comprehensive fraud scores with detailed category breakdowns and issue explanations.
// Analysis results will appear here...
Analyzing image...
Our REST API allows you to integrate fraud detection directly into your applications, workflows, or content management systems.
curl -X POST "https://api.tryminno.com/fraud-detector/api/analyze" \
-H "Authorization: Bearer demo_key_123" \
-F "file=@image.jpg"
{
"request_id": "6ab48cfe-a9ba-49a4-b7f1-e328b7c55271",
"normalized_score": 85,
"risk_level": "HIGH",
"risk_description": "Image shows strong evidence of tampering or fraud",
"issues": [
"AI-generated image detected",
"No camera information"
],
"metadata_summary": {
"file_format": "PNG",
"device": "Unknown",
"has_gps": false,
"ai_markers_found": true
},
...
}