What are Briefs in Bigdata?
Briefs are concise, automated reports generated by Bigdata’s platform that help users stay informed about their watchlists and areas of interest. They are personalized market updates that deliver only the most relevant insights based on your watchlist, helping you stay informed without information overload. Unlike traditional newsfeeds or generic newsletters, they’re tailored to your interests and can be delivered when you prefered, whether that’s daily, weekly or any other frequency you choose.Deploy your own Briefs service
To support users building with Bigdata, we’ve released a pre-built Docker image that lets you run your own financial brief generation service. This service uses the Bigdata API to generate insights from the latest news and market data, serving as a foundational component you can easily integrate into your application to deliver timely updates on the companies that matter to you. If you prefer to just receive scheduled briefs on your desired set of companies, you can use the Bigdata.com Briefs feature on our app.Setup
Some pre-requisites are required to run the service:- A Bigdata.com account that supports programmatic access.
- A Bigdata.com API key, which can be obtained from your account settings.
- For more information on how to get an API key, refer to the Bigdata.com documentation.
- An LLM and embeddings provider, currently the service supports OpenAI.
Quickstart
To quickly get started, you have two options:- Build and run locally: You need to build the docker image first and then run it:
- Run directly from GitHub Container Registry:
http://localhost:8000/ and the documentation for the API http://localhost:8000/docs.
For custom enterprise-ready solutions, please contact us at support@bigdata.com. If you are interested in using a different LLM provider—whether enterprise-grade or self-hosted solutions let us know by opening an issue on the Bigdata.com GitHub repository or through our support channels.
Usage
The service provides a simple API to generate briefs for the companies in your watchlist. Once the service is running, you can access it on port 8000 by default. You can find the API documentation athttp://localhost:8000/docs, but the easiest way to get started is through a simple user interface built into the service at http://localhost:8000/.
To create a brief in a programmatic way, send a POST request to the /briefs/create endpoint with the following parameters:
entities: The portfolio of entities you want to screen for exposure, either as a list of RavenPack entity IDs["4A6F00", "D8442A"]or a watchlist ID"44118802-9104-4265-b97a-2e6d88d74893". Watchlists can be created programmatically using the Bigdata.com SDK or through the Bigdata appreport_start_date: The start date of the report in ISO format (e.g.,2024-01-01).report_end_date: The end date of the report in ISO format (e.g.,2024-01-31).novelty: Optional, default istrue. If set totrue, the service will remember previously generated briefs and will only include novel information in following reports.sources: Optional, a list of data sources to include in the brief. If not provided, the service will use all available sources. Sources must be passed as a list of RavenPack entity IDs, e.g.['9D69F1', 'B5235B'].topics: Optional, a list of topics to focus on in the report. This is an advanced option, a set of handpicked topics focussing on financial relevance will be used if not provided. You can find the list of default topics at the GitHub repository, please note the{entity}placeholder is required to improve the results of the search process.
/briefs/create endpoint with the required parameters. Here are some examples:
Basic Example - Using a Watchlist ID
Basic Example - Using Entity IDs
Advanced Example - With Custom Topics and Configuration
source_rank_boost(optional): Control how sources are prioritized (default: 10)freshness_boost(optional): Control freshness weighting for sources (default: 8)disable_introduction(optional): Skip the introduction section in the briefcategories(optional): Filter report content by category. Available values:expert_interviews,filings,my_files,news,podcasts,research,transcripts
request_id. You can check the status and get your brief with:
http://localhost:8000/docs.
Large-Scale Portfolio Briefs Generation
For generating briefs for large portfolios (hundreds or thousands of companies), see the Large-Scale Portfolio Briefs Generation notebook in the bigdata-cookbook repository. This notebook demonstrates how to:- Process large numbers of companies in configurable batches
- Load company identifiers from CSV files
- Customize topics and research questions for different batches
- Monitor batch processing with status polling
- Export results to JSON and Excel formats
Built on top the briefs service
Some functionality you may want to build on top of the briefs service are:- Scheduled briefs: Automatically generate and send briefs to users on a regular basis.
- Automatic watchlist management: Automatically add or remove companies from the watchlist based on a theme or risk exposure.

