provider GET /v1/convai/agent-testing
@utdk/elevenlabs /v1/convai/agent-testing
List Agent Response Tests
Lists all agent response tests with pagination support and optional search filtering.
cursor query
Used for fetching next page. Cursor is returned in the response.
page_size query
How many Tests to return at maximum. Can not exceed 100, defaults to 30.
integer
search query
Search query to filter tests by name.
parent_folder_id query
Filter by parent folder ID. Use 'root' to get items in the root folder.
types query
If present, the endpoint will return only tests/folders of the given types.
include_folders query
Deprecated. Use the `types` query param and include `folder` instead.
sort_mode query
Sort mode for listing tests. Use 'folders_first' to place folders before tests.
enum: default, folders_first
sharing_mode query
Filter test visibility. Use `shared_with_me` to return only tests/folders shared with the current user that they did not create.
enum: all, shared_with_me
xi-api-key header
Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.

Try it

Authentication
Configure credentials for ElevenLabs API Documentation
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

listChatResponseTestsRoute
GET/v1/convai/agent-testing
Lists all agent response tests with pagination support and optional search filtering.

Used for fetching next page. Cursor is returned in the response.

How many Tests to return at maximum. Can not exceed 100, defaults to 30.

Search query to filter tests by name.

Filter by parent folder ID. Use 'root' to get items in the root folder.

If present, the endpoint will return only tests/folders of the given types.

Deprecated. Use the `types` query param and include `folder` instead.

Sort mode for listing tests. Use 'folders_first' to place folders before tests.

Filter test visibility. Use `shared_with_me` to return only tests/folders shared with the current user that they did not create.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import elevenlabs from '@utdk/elevenlabs';

await elevenlabs.listChatResponseTestsRoute({
  "page_size": 30,
  "sort_mode": "default"
})