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
On this page
  • Query Parameters
  • Example Request
  • Response
Safety & DetectionIdentity API

List Identities

Was this page helpful?
Previous

Search Identities

Next
Built with

GET https://app.resemble.ai/api/v2/identity

Retrieve a list of existing voice identities with optional filtering and pagination.

Query Parameters

ParameterTypeRequiredDescription
pageinteger❌Page number. Default: 1.
searchstring❌Search by speaker name.

Example Request

$curl 'https://app.resemble.ai/api/v2/identity?search=John&page=1' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'

Response

1{
2 "success": true,
3 "page": 1,
4 "total_results": 50,
5 "page_count": 5,
6 "items": [
7 {
8 "uuid": "IDENTITY_UUID",
9 "name": "John Doe",
10 "created_at": "2024-01-01T00:00:00.000Z"
11 }
12 ]
13}

Note: Returns 10 items per page.