For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • Voice Generation
    • Speech-to-Speech
  • Voice Creation
  • Voice Tools
  • Real-Time Agents
    • Overview
  • Safety & Detection
      • Overview
      • Create Identity
      • List Identities
      • Search Identities
Status
LogoLogo
Safety & DetectionIdentity API

Identity API

Was this page helpful?
Previous

Create Identity

Next
Built with

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}