provider Agents Platform GET
/v1/convai/conversations/messages/text-search @utdk/elevenlabs
/v1/convai/conversations/messages/text-search Text Search Conversation Messages
Search through conversation transcript messages by full-text and fuzzy search
- text_query query required
- The search query text for full-text and fuzzy matching
- string
- agent_id query
- Agent id (agent_…) or speech engine external id (seng_), resolved to the same underlying resource.
- call_successful query
- The result of the success evaluation
- call_start_before_unix query
- Unix timestamp (in seconds) to filter conversations up to this start date.
- call_start_after_unix query
- Unix timestamp (in seconds) to filter conversations after to this start date.
- call_duration_min_secs query
- Minimum call duration in seconds.
- call_duration_max_secs query
- Maximum call duration in seconds.
- rating_max query
- Maximum overall rating (1-5).
- rating_min query
- Minimum overall rating (1-5).
- has_feedback_comment query
- Filter conversations with user feedback comments.
- user_id query
- Filter conversations by the user ID who initiated them.
- evaluation_params query
- Evaluation filters. Repeat param. Format: criteria_id:result. Example: eval=value_framing:success
- data_collection_params query
- Data collection filters. Repeat param. Format: id:op:value where op is one of eq|neq|gt|gte|lt|lte|in|exists|missing. For in, pipe-delimit values.
- tool_names query
- Filter conversations by tool names used during the call.
- tool_names_successful query
- Filter conversations by tool names that had successful calls.
- tool_names_errored query
- Filter conversations by tool names that had errored calls.
- main_languages query
- Filter conversations by detected main language (language code).
- page_size query
- Number of results per page. Max 50.
- integer
- summary_mode query
- Whether to include transcript summaries in the response.
- enum: exclude, include
- conversation_initiation_source query
- text_only query
- branch_id query
- Filter conversations by branch ID.
- topic_ids query
- Filter conversations by topic IDs assigned during topic discovery.
- sort_by query
- Sort order for search results. 'search_score' sorts by search score, 'created_at' sorts by conversation start time.
- enum: search_score, created_at
- cursor query
- Used for fetching next page. Cursor is returned in the response.
- 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.textSearchConversationMessagesRoute({
"page_size": 20,
"summary_mode": "exclude"
})