List Identities

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

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

Query Parameters

ParameterTypeRequiredDescription
pageintegerPage number. Default: 1.
searchstringSearch 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.