Recaptured Image Detection API
Upload an image to check whether it may have been photographed again from a phone, monitor, tablet, or another display, and compare recapture and original-image confidence.
Documentation
Accepts one image and returns recapture and original-image confidence. The output is a source-risk screening signal, not an authenticity certificate, forensic opinion, or automated denial basis.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"imageBase64": "/9j/4AAQSk..."
}Response Example
{
"results": [
{
"name": "recapture",
"score": "0.9723"
},
{
"name": "original",
"score": "0.0277"
}
]
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| imageBase64 | string | /9j/4AAQSk... |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| results | array | {"name":"recapture","score":"0.9723"} |
| results[] | object | {...} |
| results[].name | string | recapture |
| results[].score | string | 0.9723 |