Skip to main content
Version: 2.0.0

Detect Watermark

note

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

Detect a watermark in an audio file using the provided URL.

HTTP Request

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

Request

ParameterTypeDescription
urlRequiredThe URL of the audio file to detect a watermark in. 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 Watermark Detection Result

Retrieve the result of a detected watermark using the provided UUID.

HTTP Request

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

HTTP Response

Metrics contains all of the channels in the audio file submitted with a boolean representing if the Watermark was detected.

{
"success": true,
"item": {
"uuid": <string>,
"metrics": {
"channel_0": true,
"channel_1": true
}
}
}