Easily find the most relevant information from trusted sources and your own data. Use it to power agents that give accurate, real-time answers.
Before getting started, choose your preferred integration method 👇
We recommend using the API for this guide, but you can also follow along with the Python SDK.
It will only take you 5 minutes and will guide you through:✅ Authenticate to bigdata.com
✅ Query bigdata.com
✅ Examine search results
Authenticate to bigdata.com
Enter the X-API-KEY in the header of the request to authenticate to the API.X-API-KEY: <your-api-key>Query bigdata.com
Bigdata.com processes millions of documents detecting entities
(companies, people, organizations, products, places, topics, etc) and
the events those entities play a role in. You can query all that data to
get direct insights about what you care about. You will be able to
create workflows that will optimize your day-to-day activities.Query example: As an example, I want to look for positive news about
the company that powered bigdata.com, RavenPack, in the month of June
2024.Matching documents:Examine search results
Congratulations! 🎉 You have successfully analyzed millions of documents
and found two with the information that you are interested in.Let’s examine the output more closely. The results object contains the document headline, the publication date, the source of the document, the URL of the document, and the chunks that matched your query.Summary
You have experienced using the Bigdata API to extract
insights from millions of unstructured data that bigdata.com has
processed.We recommend exploring the following key concepts to empower your
searches. We are sunsetting our SDKs and will no longer add new features, security patches, bug fixes, or technical support for them. To access the latest capabilities and ongoing improvements, we encourage you to migrate to our RESTful API.SDK support will officially end on December 31, 2026. On this date, the underlying endpoints used by the SDKs and related documentation will be decommissioned.To avoid any disruption to your services, please ensure your migration is complete by that date.For migration assistance, please contact us at support@bigdata.com. It will only take you 5 minutes and will guide you through:✅ Install bigdata-client package
✅ Authenticate to bigdata.com
✅ Query bigdata.com
✅ Examine search results
Ready to get started? Let’s dive in!
Install bigdata-client package
First of all, let’s install bigdata-client package in a python
virtual environment.Open the terminal and create a virtual environment with the following
command:Activate the virtual environment, every time you want to use it:And install the bigdata-client within the environment bigdata_venv.Authenticate to bigdata.com
Enter the python interpreter with the following commandNow you can import the Bigdata object from the bigdata_client package,And initiate it with your bigdata.com personal credentials.Query bigdata.com
Bigdata.com processes millions of documents detecting entities
(companies, people, organizations, products, places, topics, etc) and
the events those entities play a role in. You can query all that data to
get direct insights about what you care about. You will be able to
create workflows that will optimize your day-to-day activities.Query example: As an example, I want to look for positive news about
the company that powered bigdata.com, RavenPack, in the month of June
2024.Output:Examine search results
Congratulations! 🎉 You have successfully analyzed millions of documents
and found two with the information that you are interested in.Let’s examine the results more closely. The following command will
print the document headline, number of chunks that matched your query,
and chunk details.Summary
You have experienced using the bigdata-client package to extract
insights from millions of unstructured data that bigdata.com has
processed.We recommend exploring the following key concepts to empower your
searches.
- Knowledge Graph: It helps
you find Entity IDs to query.
- Query filters: It describes all the
possible filters you can use in a query.
- Search Results: It describes the
Document and Chunk structure with many other parameters.
- Upload your own content: You can also upload
your private data. Bigdata.com will process them and consult them to
answer only your queries.