Skip to main content
Version: 2.0.0

Description

note

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

The Resemble Identity API allows you to create and manage voice identity profiles, as well as search for matching identities based on audio samples. These endpoints provide functionality to create, retrieve, and search voice identities.

interface Identity {
id: string
name: string
created_at: string
updated_at: string
}

interface CreateIdentityRequest {
name: string
url: string
}

interface CreateIdentityResponse {
success: boolean
item: Identity
}

interface GetIdentitiesResponse {
success: boolean
items: Identity[]
}

interface SearchIdentityRequest {
url: string
}

interface SearchIdentityResponse {
success: boolean
item: {
[identity_id: string]: {
name: string
distance: number
}
}
}