Sora Watermark Remover API Integration
Use Sora Watermark Remover through Rivya Public API v1 with model id sora-watermark-remover, supported inputs, parameters, Files API rules, credits, and response examples.
Available via APIURL input readyVideo
API model id
sora-watermark-remover
Inputs
url
Files API
Not required for the minimal request
Base credits
3
Capability
Video
Billing
FIXED
Prompt limit
No documented prompt limit
Request contract
Send the model id at the top level. Model-specific controls belong in params.
| Key | Type | Required | Default | Description |
|---|---|---|---|---|
| model | string | Yes | sora-watermark-remover | Use the sora-watermark-remover API model id. |
| prompt | string | No | - | Prompt text for models that support text input. |
| params | object | Yes | - | Model-specific parameter object. Use the rows below for allowed keys. |
| client_request_id | string | No | - | Optional client-side id for tracing requests in your system. |
Model parameters
| Key | Type | Required | Default | Range | Options | Description |
|---|---|---|---|---|---|---|
| video_url | text | Yes | - | - | - | Sora video URL |
| upload_method | select | Yes | s3 | - | s3, oss | Upload target |
Minimal request
{
"model": "sora-watermark-remover",
"params": {
"video_url": "https://example.com/input.mp4",
"upload_method": "s3"
}
}Create response
The create endpoint returns a public task id. Poll the status endpoint until the task succeeds or fails.
{
"id": "task_sora_watermark_remover_example",
"status": "queued",
"model": "sora-watermark-remover",
"reserved_credits": 3,
"final_credits": 0,
"created_at": "2026-05-11T00:00:00.000Z",
"updated_at": "2026-05-11T00:00:00.000Z",
"result": null,
"error": null
}Common errors
validation_failed, insufficient_credits, idempotency_conflict, rate_limited, not_found
This model accepts public URL input through model parameters.