Analyze image frames to detect the presence of watermarks using AI classification. Returns confidence scores, bounding boxes, and a summary with dominant watermark region.
Timeout: 10s | Provider: cf-ai | Accepts: video
Request
curl -X POST https://api.rendobar.com/jobs \
-H "Authorization: Bearer rb_your_key" \
-H "Content-Type: application/json" \
-d '{
"type": "watermark.check",
"inputs": {
"frames": [
"https://cdn.rendobar.com/assets/examples/sample-frame.jpg"
]
},
"params": {
"threshold": 0.5
}
}'
Parameters
Confidence threshold (0-1)
Response
{
"data": {
"id": "job_abc123",
"status": "dispatched"
}
}