Extract an invisible watermark payload from an image using Meta VideoSeal 1.0. Two modes: extract (blind — what payload is embedded?) or verify (does this image contain THIS specific payload?). Returns confidence score, bit recovery stats, and the decoded payload string.
Timeout: 30s | Provider: triggerdev | Accepts: image
Request
curl -X POST https://api.rendobar.com/jobs \
-H "Authorization: Bearer rb_your_key" \
-H "Content-Type: application/json" \
-d '{
"type": "watermark.detect",
"inputs": {
"source": "https://cdn.rendobar.com/assets/examples/watermarked.jpg"
},
"params": {}
}'
Parameters
Expected payload to verify against (omit for blind extraction)
Response
{
"data": {
"id": "job_abc123",
"status": "dispatched"
}
}