Autosuggest is not yet supported in the API.
find_{element}() method.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
from bigdata_client import Bigdata
# Create a Bigdata object, the main entry point to the API
bigdata = Bigdata()
results = bigdata.knowledge_graph.autosuggest("tesla")
for obj in results:
print(f"{obj.name}: {obj.id}")
tickers = ["META", "AAPL", "AMZN", "NFLX", "GOOGL"]
FAANG = []
for t in tickers:
FAANG.append(bigdata.knowledge_graph.autosuggest(t, limit=1))
print(FAANG)
find_{element}() method.
Was this page helpful?