Checks whether an image was generated or signed by Bria, via its C2PA manifest and Bria's invisible watermark.
POST
- by url
- by base64
curl -i -X POST \
https://engine.prod.bria-api.com/v2/image/verify \
-H 'Content-Type: application/json' \
-d '{
"image": "https://labs-assets.bria.ai/sandbox-example-inputs/remove_background_example.jpg"
}'Response
- trusted by C2PA
- signed, but not by Bria
- not from Bria
- GIF or WEBP, watermark check skipped
{ "result": { "verified": true, "c2pa": { "present": true, "is_trusted": true, "validation_state": "Trusted" }, "invisible_watermark_detected": false }, "request_id": "a1b2c3d4e5f6" }