Skip to main content
Version: 2.0.0

Apply Watermark

note

Watermark API is currently in beta. Please contact us if you would like to be added to the beta program.

Apply a watermark to an audio file using the provided URL.

HTTP Request

POST https://app.resemble.ai/api/v2/watermark/apply

Request

ParameterTypeDescription
urlRequiredThe URL of the audio file to be watermarked. The audio file should be in WAV format. Provide a valid HTTPS URL pointing to the audio file.

HTTP Response

{
"success": true,
"item": {
"uuid": <string>,
"created_at": "2024-01-01T00:00:00.000Z",
"updated_at": "2024-01-01T00:00:00.000Z"
}
}

Fetch Apply Result

Retrieve the result of an applied watermark using the provided UUID.

HTTP Request

GET https://app.resemble.ai/api/v2/watermark/apply/:uuid/result

HTTP Response

{
"success": true,
"item": {
"uuid": <string>,
"created_at": "2024-01-01T00:00:00.000Z",
"updated_at": "2024-01-01T00:00:00.000Z",
"watermarked_audio": "https://app.resemble.ai/rails/active_storage/..."
}
}