The method find_organizations returns a list of organizations that matched the value parameter.

The value can match with the organization’s name, or description.

Once you have the IDs, you can use them to filter your search queries with an Entity query filter.

from dotenv import load_dotenv
from bigdata_client import Bigdata
import os

load_dotenv()

# Initialize the Bigdata API
username = os.environ.get("BIGDATA_USERNAME")
password = os.environ.get("BIGDATA_PASSWORD")
bigdata = Bigdata(username, password)

results = bigdata.knowledge_graph.find_organizations("Central Bank")

for organization in results:
    print(f"Entity ID: {organization.id}")
    print(f"Organization Name: {organization.name}")
    print(f"Country: {organization.country}")  
    print(f"Description: {organization.description}\n")

Output:

Entity ID: 0E17C3
Organization Name: Central Bank of India
Country: India
Description: The Reserve Bank of India (RBI) is India's central banking institution, which controls the monetary policy of the Indian rupee. It commenced its operations on April 1,1935.

Entity ID: 91936D
Organization Name: Central Bank of China
Country: China
Description: The People's Bank of China is the central bank of the People's Republic of China, responsible for carrying out monetary policy and regulation of financial institutions in mainland China. It was founded in December of 1948.

Entity ID: B49825
Organization Name: Central Bank of Norway
Country: Norway
Description: The Central Bank of Norway, also known as Norges Bank, is the central monetary authority in Norway. It is responsible for issuing the national currency, managing monetary policy, maintaining price stability, and promoting a safe and efficient financial system. The Central Bank of Norway also manages the Government Pension Fund Global, one of the world's largest sovereign wealth funds. Founded on June 14, 1816.

Entity ID: 3DCFBE
Organization Name: Central Bank of Ukraine
Country: Ukraine
Description: The National Bank of Ukraine is the government body responsible for a unified state policy in the field of the country's monetary circulation. It was founded in 1991.

Entity ID: 8FD0DB
Organization Name: Central Bank of Spain
Country: Spain
Description: The Bank of Spain is the central bank of Spain. It was established in Madrid in 1782.

...