List Identities

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

Retrieve a paginated list of your team’s identities, newest first.

Query Parameters

ParameterTypeRequiredDescription
pageinteger❌Page number. Default: 1.
page_sizeinteger❌Items per page (10–1000). Default: 10.
searchstring❌Filter by identity name.

Example Request

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

Response

{
"success": true,
"page": 1,
"num_pages": 5,
"page_size": 10,
"total_count": 50,
"items": [
{
"uuid": "IDENTITY_UUID",
"name": "John Doe",
"created_at": "2026-01-01T00:00:00.000Z",
"audio_url": "https://app.resemble.ai/rails/active_storage/blobs/...",
"visibility": "team",
"identity_type": "person",
"notes": null,
"voice_profile_id": null,
"updated_at": "2026-01-01T00:00:00.000Z",
"project_count": 2
}
]
}

Note: Identities created before the multimodal upgrade may omit the visibility, identity_type, and related newer fields.