Identity API

Beta: Reach out to the Resemble team to join the preview program.

Create and manage voice identity profiles, then search incoming audio against known identities.

1interface Identity {
2 id: string;
3 name: string;
4 created_at: string;
5 updated_at: string;
6}
7
8interface CreateIdentityRequest {
9 name: string;
10 url: string; // audio sample URL
11}
12
13interface SearchIdentityResponse {
14 success: boolean;
15 item: Record<string, { name: string; distance: number }>;
16}