Search collection documents
Runs search over the documents in a collection, ranked by relevance to query. The collection’s retrieval_type setting selects the strategy: vector (semantic similarity), hybrid (vector similarity fused with keyword matching), or keyword (lexical BM25 matching). When query is omitted, returns a plain catalog listing of the collection’s documents.
How it works:
- For
vectorandhybrid, thequerytext is embedded into a 1024-dimensional vector using the multilingual-e5-large model. - For
vector, the embedding is compared against the collection’s indexed document chunks using semantic similarity; forhybrid, those similarity scores are fused with keyword-match scores; forkeyword, only lexical BM25 matching is applied. - Results are ranked by
score(descending) and paginated viapage[number]/page[size].
Authentication: Requires a Telnyx API key via Authorization: Bearer <key>. Results are automatically scoped to your organization and cannot be overridden.
Filtering: Use filter[field][operator]=value query parameters to narrow results before search. Supported operators: eq (default), in, gte, gt, lte, lt, contains. Metadata fields resolve to metadata.<field>.
Examples:
GET /v2/ai/collections/my-collection/documents?query=billing+issue&top_k=10GET /v2/ai/collections/my-collection/documents?query=refund&sources=voice,messageGET /v2/ai/collections/my-collection/documents?query=outage&filter[record_created_at][gte]=2026-01-01T00:00:00Z
Authorizations
Telnyx API key. Collections and results are automatically scoped to the authenticated user's organization.
Path Parameters
The collection's slug (unique within your organization).
"support-transcripts"
Query Parameters
Natural-language search query. When provided, the text is matched against the collection's document chunks using the collection's retrieval_type (vector or hybrid). When omitted, documents are returned as a plain catalog listing.
1"customer called about billing issue"
Maximum number of ranked results to consider. When omitted, the collection's configured top_k setting is used.
1 <= x <= 5010
Comma-separated list of source types to restrict the search to. When omitted, all of the collection's sources are searched.
"voice,message"
Override the collection's configured retrieval strategy for this request. Echoed back in meta.retrieval_type.
vector, hybrid, keyword "hybrid"
Field filters applied before ranking, using filter[field][operator]=value. Supported operators: eq (default), in, gte, gt, lte, lt, contains. Known fields: record_type, record_id, user_id, record_created_at, ingested_at; any other name resolves to a metadata.<field> filter. Example: filter[record_id][eq]=rec_123.
Page number to return (1-based). Defaults to 1.
x >= 11
Number of results per page. Defaults to 20.
1 <= x <= 10020