Skip to main content
Version: 2.0.0

Description

note

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

The Resemble Watermark API allow you to apply and detect watermarks on audio files. These endpoints provide functionality to apply and detect watermarks, and you can access the results of these operations through dedicated result endpoints.

interface ApplyRequest {
url: string
}

interface ApplyResult {
success: boolean
item: {
uuid: string
created_at: datetime
updated_at: datetime
}
}

interface DetectRequest {
url: string
}

interface DetectResult {
success: boolean
item: {
uuid: string
created_at: datetime
updated_at: datetime
}
}