Identity

The 0xIQ 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
        }
    }
}

Last updated