Include Audit ParameterAdded a new optional Example Response (metadata):See the Search Documents API reference for more details.
include_audit boolean parameter to the Search endpoint (/v1/search). When set to true, the response metadata will include an audit object containing the resolved queries that were actually executed, which is useful for debugging and understanding how the system interpreted your request.The audit object contains a queries array, where each entry shows the resolved filters, ranking parameters, and other settings used for that sub-query.Example Request:Batch Search APIProcess large volumes of search requests asynchronously with 50% lower costs. Submit a
.jsonl file containing multiple search queries, monitor progress, and download results when complete.New Endpoints:- Create a Batch Job (
POST /v1/search/batches) - Get abatch_idandpresigned_urlfor uploading your input file. - Upload Your Input File - Upload your
.jsonlfile to the presigned URL. - Get Batch Job Info (
GET /v1/search/batches/{batch_id}) - Check job status and retrieve results when complete.
Bigdata Content APIIntroducing the Bigdata Content API (
/contents/v1/), a new REST API for managing and querying content that you or your organization onboard to Bigdata. Use it to bring your own data into Bigdata and make it available for Search and Research Services.The API is organized around three areas:- Connectors: Create and manage ingestion sources (e.g. email inbox, SharePoint). Configure connectors to receive content and optionally share it across your organization.
- Documents: Manage your uploaded documents. Get metadata, download the original file, or fetch the annotated (structured) version of your files.
- Tags: Discover and use tags (e.g. sender/recipient for emails) to interact with your content.
Document and Chunk Query FiltersAdded two new query filters to the Search and Co-mention endpoints (See the Search API reference for full details.
/v1/search, /v1/search/volume, /v1/search/co-mentions/entities, /v1/search/co-mentions/topics).-
Document filter: Restrict the search to a list of specified documents. Use document IDs (e.g., from a previous search response) with
mode(INCLUDEorEXCLUDE) andvalues(array of document IDs). -
Chunk filter: Narrow the search to a particular section within a document. Use
fromandto(1-based chunk indices, inclusive) to expand the context around a previously retrieved chunk.
Documents Endpoint UpdateUpdated the Example Response (public web content):Example Response (premium content):See the Fetch Document API reference for full details and usage guidelines.
/v1/documents/{document_id} endpoint to support both public web content and premium documents.The endpoint now returns a URL along with a type field indicating how the document should be accessed:- For public web content, the response includes a direct link to the original publisher’s website.
- For premium or licensed content, the response includes a pre-signed URL (valid for 24 hours) that can be used to download the document in JSON format.
Search Mode ParameterAdded a new optional See the Search Documents API reference for more details.
search_mode parameter to the Search endpoint (/v1/search). This parameter determines how the search query is processed.Available modes:fast(default): Runs a single query against the vector DB using the specified filters. Best for pre-processed queries where you control the filters.smart: Analyzes the query text to automatically define advanced search filters and runs multiple sub-queries to ensure better coverage. Ideal for sending user questions directly without pre-processing. Has higher latency than fast mode.
smart mode, only timestamp and source filters are allowed. Using any other filters will result in a 400 Bad Request error.Example:Workflows API LaunchIntroducing the Workflows API for templated, reproducible research workflows.Key Features:
- Templated Prompts with Jinja2 and parameterized inputs
- Template Management (CRUD operations)
- Community Templates to discover and clone
- Research Plans for structured execution
- Model Selection (base, pro, gemini, claude variants)
- Content Filtering and Time Range Control
POST /v1/workflow/execute- Execute a workflowGET/POST /v1/workflow/templates- List/Create templatesGET/PUT/DELETE /v1/workflow/templates/{id}- Manage templatesGET /v1/workflow/templates/community- Browse community templatesPOST /v1/workflow/templates/{id}/clone- Clone a template
Fetch Document EndpointAdded a new Example Response:See the Fetch Document API reference for full details and usage guidelines.
/documents/{document_id} endpoint that returns the full document in JSON format. The response includes a pre-signed URL, valid for 24 hours, which can be used to download the target document.Example:Auto Enrich Filters ParameterAdded a new optional See the Search Documents API reference for more details.
auto_enrich_filters parameter to the query object in all Search endpoints (/v1/search, /v1/search/volume, /v1/search/co-mentions/entities, /v1/search/co-mentions/topics).This advanced parameter controls automatic enrichment of filters using the query text:true(default): The system automatically extracts and adds relevant filter values from the query text.false: Disables automatic enrichment, useful when you have created a strict query with specific keywords and entity filters and you do not want any extra values added to those filters.
Pagination Added to Events Calendar APIPagination support has been added to the Events Calendar REST endpoint (
/v1/events-calendar), making it easier to work with large sets of past and upcoming events and to build scalable, production-ready integrations. See the Events Calendar API reference for more details.- Enables efficient navigation of large event datasets through paginated responses.
- Supports scalable client integrations by reducing payload size and request complexity.
- Improves the ability to build responsive user interfaces and event-driven workflows.
Granular Category Filter ValuesThe See the Search Documents API reference for more details.
category filter in the RESTful Search endpoint (/v1/search) and related endpoints now supports more granular category values, allowing customers to search by categories at a more precise level.In addition to the existing categories, the following new granular categories are now available:News Categories:news_premium- Premium news sources
research_academic_journals- Academic journal research
expert_interviews, filings, my_files, news, podcasts, research, transcripts) continue to be supported for backward compatibility.Example:Search Volume EndpointAdded a new Example Response:See the Search Volume API reference for more details, or check out the Theme Volume Evolution how-to guide for a complete example with visualization.
/v1/search/volume endpoint that returns document and chunk volume statistics over time for a search query, aggregated by date with sentiment analysis. This endpoint uses the same request parameters as the /v1/search endpoint, except for ranking_params and max_chunks.This endpoint is valuable for several use cases:- Evaluate the product: Customers can see how many unique documents Bigdata has available for their particular query, which sets us apart from competitors.
- Narrative/Thematic screeners: Users can create a query and see how the defined narrative evolves over time.
- Query strategy: Users can check the coverage and plan how to create queries accordingly.
Sentiment API launch & Earnings Data EnhancementsAdded
- Launched the Sentiment REST endpoint (
/v1/entity-sentiment), enabling programmatic access to sentiment signals derived from news and content sources. See the Entity Sentiment API reference for more details.
- Expanded Earnings Calendar API coverage, providing improved access to upcoming and historical earnings events across supported companies.
- Improved structure, consistency, and completeness of Earnings Calendar API responses to support more reliable downstream integrations.
- Enhanced data validation and response handling across select financial datasets to reduce inconsistencies.
- Improved overall API reliability and performance for high-volume requests.
- Fixed issues where certain API responses could return incomplete or inconsistent data under specific conditions.
- Addressed minor response formatting issues across select endpoints.
Search in Headlines, Body, or BothAdded a new optional
search_in parameter to the keyword, entity, and topic filter objects in the RESTful Search endpoint (/v1/search). See the Search Documents API reference for more details.This parameter allows you to specify where to search for keywords, entities, or topics:HEADLINE: Search only in document headlinesBODY: Search only in document body textALL: Search in both headlines and body text (default)
search_in parameter is not provided, it defaults to ALL, maintaining backward compatibility with existing API calls.Example:Sentiment Filter with Custom RangesAdded a new See the Search Documents API reference for more details.
ranges parameter to the sentiment filter in the RESTful Search endpoint (/v1/search). This parameter allows you to filter documents by custom sentiment score ranges, providing more precise control over sentiment filtering than the previous values parameter.The ranges parameter accepts an array of objects, each specifying a min and max sentiment score (ranging from -1.0 to 1.0). You can specify multiple ranges to capture different sentiment segments.Sunsetting: The values parameter (which accepted ["positive", "negative", "neutral"]) is now sunsetting. While it will continue to work for backward compatibility, we recommend migrating to the new ranges parameter for more precise sentiment filtering.Example:Tag Filter for Uploaded DocumentsAdded a new See the Search Documents API reference for more details.
tag filter to the RESTful Search endpoint (/v1/search) that allows you to find uploaded documents with specific tags. This filter is particularly useful when working with private uploaded files or forwarded emails that have been tagged.The tag filter accepts an any_of parameter containing an array of tag strings. Documents matching any of the specified tags will be included in the search results.Example:Custom Reranker ThresholdAdded a new optional See the Search Documents API reference for more details.
threshold parameter to the reranker object in the ranking_params of the RESTful Search endpoint (/v1/search). This parameter allows you to set a custom threshold to filter results by relevance score, improving precision and reducing noise.The threshold parameter accepts a float value ranging from 0.0 to 1.0. The default reranker uses a threshold of 0.2, but you can set a custom threshold to control result quality. Higher values return fewer, more relevant results.Example:Category FilterAdded a new See the Search Documents API reference for more details.
category filter to the RESTful Search endpoint (/v1/search) that allows you to filter documents by category. This enables selecting a related set of sources without having to add a long list of source IDs.The category filter accepts a mode parameter (INCLUDE or EXCLUDE) and a values array containing one or more category names. The currently supported categories are:expert_interviewsfilingsmy_filesnewspodcastsresearchtranscripts
Expanded API Coverage for Companies, Financials, and FundsThese new APIs give clients richer company fundamentals and the ability to screen & analyze funds with more precision:
- Company Profile (
/v1/company-profile) retrieving comprehensive company profile data. - Revenue Geographic Segments (
/v1/company-revenue-geographic-segments) providing revenue data for a company broken down by geographic regions. - Revenue Product Segments (
/v1/company-revenue-product-segments) delivering detailed revenue data for a company segmented by product lines or business units. - Stock & Funds Screener (
/v1/company-screener) enabling advanced screening of stocks and funds. - Fund Holdings (
/v1/holdings/funds/stocks) delivering institutional fund holdings and portfolio summary data.
New Core Financial & Market Data EndpointsThis release introduces a set of core financial and market data APIs, including comprehensive company financial statements, trailing ratios, daily and intraday prices, price changes, and real‑time quotes.
- Income Statement (
/v1/income-statement) returning a company’s income statement data. - Cash Flow Statement (
/v1/cash-flow-statement) providing a company’s cash flow statement data. - Daily Prices (
/v1/price/daily) delivering end‑of‑day pricing data for equities. - Company Ratios TTM (
/v1/company-ratios-ttm) returning trailing twelve‑month financial ratios for a company. - Intraday Prices (
/v1/price/intraday) providing intraday (within‑day) pricing data for equities. - Price Changes (
/v1/price/changes) delivering computed price change metrics. - Quote (
/v1/quote) returning the latest real‑time or near‑real‑time quote for an equity.
New Core Financial & Market Data EndpointsThis release introduces a set of core financial and market data APIs, including comprehensive company financial statements, trailing ratios, daily and intraday prices, price changes, and real‑time quotes.
- Earnings Surprises (
/v1/latest-surprise) returning actual earnings vs. consensus estimates along with surprise metrics. - Key Metrics TTM (
/v1/key-metrics-ttm) providing key trailing twelve‑month performance metrics. - Balance Sheet (
/v1/balance-sheet) delivering a company’s balance sheet data. - Analyst Ratings (
/v1/analyst-ratings) returning aggregated analyst rating data. - Analayst Estimates (
/v1/analyst-estimates) providing detailed analyst forecast estimates for metrics. - Events Calendar (
/v1/events-calendar) delivering scheduled company and market events.

