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
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"
})