Fast Business Entities Lookups for Financial and Executives Overview

Welcome to our EntityDB, the centralized repository for financial overviews and executives' information of entities listed in the US.
Access key financial metrics, analyze performance, and explore leadership teams. Make informed investment decisions, conduct industry research, and connect with key decision-makers in one reliable resource.

Last Updated:

Examples

Look up Google (Alphabet Inc.) by ID:
 
~ $
curl https://entitydb.shodan.io/api/entities/3
Look up Google (Alphabet Inc.) by Stock Symbols:
 
~ $
curl https://entitydb.shodan.io/api/entities/symbol/GOOGL
~ $
curl https://entitydb.shodan.io/api/entities/symbol/GOOG

Use the requests Python library to lookup Alphabet Inc.:
                
import requests
ent_url = "https://entitydb.shodan.io/api/entities/3"
ent_data = requests.get(entity_url).json()

ent_url = "https://entitydb.shodan.io/api/entities/symbol/GOOGL"
ent_data = requests.get(entity_url).json()
                
            
More entities: List of all entities

Frequently Asked Questions

  • How much does it cost?
    It's free for non-commercial use! If you're using the EntityDB to make a benefit then you need an enterprise license.
  • How often is it updated?
    EntityDB gets updated once a month, start running from the 1st day of the month.
  • Do I need a Shodan API key?
    No, you don't need to have a Shodan account or a Shodan API key in order to use the EntityDB.
  • How is it different from the regular Shodan API?
    The EntityDB provides a lot of different data from a regular Shodan API. It only gives you the entity metadata, financial overview and executives compensation table . The EntityDB doesn't return any banners, it gives the financial insights for decision-making in stock exchange, investment, sales.
                
{
  "finance_data": [
    {
      "report_year": 2022,
      "report_at": "2023-02-03",
      "revenue": 282836000000,
      "net_income": 59972000000,
      "depletion_and_amortization": 15287000000,
      "operation_income_loss": 74842000000,
      "ebitda": 90129000000,
      "earning_per_share": 4.59,
      "earning_per_share_diluted": 4.56,
      "filing_url": "https://www.sec.gov/Archives/edgar/..."
    },
    ...
  ],
  "entity": {
    "id": 3,
    "cik": 1652044,
    "entity_name": "Alphabet Inc.",
    "hostname": "www.google.com",
    "entity_type": "operating",
    "sic": "7370",
    "sic_description": "Services-Computer Programming,...",
    "tickers": [ "GOOGL", "GOOG" ],
    "exchanges": [ "NASDAQ" ],
    "ein": null,
    "fiscal_year_end": "1231",
    "mail_address": "1600 AMPHITHEATRE PARKWAY,...",
    "business_address": "1600 AMPHITHEATRE PARKWAY,...",
    "phone": "650-253-0000",
    "updated_at": "2023-06-14T01:12:14"
  },
  "executives": [
    {
      "name": "Sundar Pichai",
      "role": "Chief Executive Officer, Alphabet and Google...",
      "year": 2022,
      "salary": 2000000,
      "stock_awards": 218037684,
      "total": 225985145,
      "additional_data": {
        "non_equity_incentive_plan_compensation": "—",
        "all_other_compensation": "5947461"
      }
    },
    ...
  ]
}