cURL
Python
JavaScript
PHP
Go
Java
curl --request GET \
--url https://api.financialdatasets.ai/company/facts \
--header 'X-API-KEY: <api-key>'
{
"company_facts" : {
"ticker" : "<string>" ,
"name" : "<string>" ,
"cik" : "<string>" ,
"industry" : "<string>" ,
"sector" : "<string>" ,
"category" : "<string>" ,
"exchange" : "<string>" ,
"is_active" : true ,
"listing_date" : "2023-12-25" ,
"location" : "<string>" ,
"market_cap" : 123 ,
"number_of_employees" : 123 ,
"sec_filings_url" : "<string>" ,
"sic_code" : "<string>" ,
"sic_industry" : "<string>" ,
"sic_sector" : "<string>" ,
"website_url" : "<string>" ,
"weighted_average_shares" : 123
}
}
👋 Overview
Company facts includes data like name, CIK, market cap, total employees, website URL, and more.
The company facts API provides a simple way to access the most important high-level information about a company.
Please note: This API is experimental and free to use.
To get started, please create an account and grab your API key at financialdatasets.ai .
You will use the API key to authenticate your API requests.
📊 Available CIKs
You can fetch a list of available CIKs with a GET
request to:
https://api.financialdatasets.ai/company/facts/ciks/
🚀 Getting Started
There are only 3 steps for making a successful API call:
Add your API key to the header of the request as X-API-KEY
.
Add query params like cik
filter the data.
Execute the API request.
Note : You must include the cik
in your query params.
💻 Example
API key for authentication.
The ticker symbol of the company.
The Central Index Key (CIK) of the company.
The industry of the company.
The sector of the company.
The category of the company.
The exchange of the company.
Whether the company is currently active.
company_facts. listing_date
The date the company was listed on the stock exchange.
The location of the company.
The market capitalization of the company.
company_facts. number_of_employees
The number of employees at the company.
company_facts. sec_filings_url
The URL of the company's SEC filings.
The Standard Industrial Classification (SIC) code of the company.
company_facts. sic_industry
The industry of the company based on the SIC code.
The sector of the company based on the SIC code.
company_facts. website_url
The URL of the company's website.
company_facts. weighted_average_shares
The weighted average shares of the company.