Skip to main content
POST
/
watermark
/
apply
Apply watermarks to video or image
curl --request POST \
  --url https://api.rendobar.com/watermark/apply \
  --header 'Content-Type: application/json' \
  --data '
{
  "inputs": {
    "source": "https://cdn.rendobar.com/assets/examples/sample.mp4"
  },
  "params": {
    "watermarks": [
      {
        "type": "image",
        "url": "https://cdn.rendobar.com/assets/brand/logo-full.png",
        "position": "bottom-right"
      },
      {
        "type": "text",
        "content": "© 2026 Rendobar",
        "position": "bottom-left",
        "shadow": true
      }
    ]
  }
}
'
{
  "data": {
    "id": "<string>",
    "status": "dispatched"
  }
}

Body

application/json
inputs
object
required
params
object

Response

Job created and dispatched successfully

data
object
required