Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.bigdata.com/llms.txt

Use this file to discover all available pages before exploring further.

The Bigdata CLI is a command-line interface to the Bigdata.com REST API. It lets agents and developers query Bigdata Services from the terminal, pipe results into other tools, and orchestrate workflows in scripts or CI. Coding agents and automation pipelines work natively with shell commands. The Bigdata CLI exposes Bigdata Services in a form agents can call, parse, and compose without writing any HTTP client code, making it straightforward to ground agent workflows in premium financial content. It currently supports the Search and Knowledge Graph endpoints, with more services coming soon.

Get started

1

Installation

The CLI is published on PyPI as bigdata-cli.
pip install bigdata-cli
Two entry points are available after installation: bigdata (full name) and bd (short alias).
2

Create an API Key

You can create your API Key in the Developer Platform > API Keys.Developer Platform > API Keys
3

Configure the API Key

Run the interactive configuration command, which prompts for your key and profile:
bd configure
For CI or scripts, configure non-interactively:
bd configure --non-interactive --api-key your-api-key
Or set the key via environment variable instead:
export BIGDATA_API_KEY=your-api-key
4

Try it out

Discover the available commands:
bd --help
bd search --help
bd find --help
bd resolve --help
Run your first queries:
# Search across news, filings, and transcripts
bd search run "Tesla AI chips" --limit 5

# Discover entities in the Knowledge Graph (fuzzy search)
bd find companies "Apple"

# Resolve a known identifier to a stable entity (deterministic lookup)
bd resolve isin US0378331005

# Combine commands: get an entity ID, then filter a search by it
bd find companies "Tesla" -o json | jq -r '.results[0].id'
bd search run "earnings" --entity-any-of DD3BB1 --limit 10

# Aggregate signals over time
bd search volume "Tesla" --date-start 2025-01-01 --date-end 2025-03-31
bd search co-mentions-entities "AI chips" --limit 10