Skip to main content
GET
/
stocks
/
company-facts
Company Facts
curl --request GET \
  --url https://api.tradewatch.io/stocks/company-facts \
  --header 'api-key: <api-key>'
{
  "ticker": "<string>",
  "cik": "<string>",
  "company_name": "<string>",
  "sic_code": "<string>",
  "sic_description": "<string>",
  "state_of_incorporation": "<string>",
  "fiscal_year_end": "<string>"
}

Authorizations

api-key
string
header
required

Authentication via API key header

Query Parameters

ticker
string
required

Stock ticker symbol (e.g. AAPL)

Response

Successful Response

ticker
string
required

Stock ticker symbol (uppercase)

cik
string
required

SEC Central Index Key — unique identifier assigned by the SEC to each registrant

company_name
string | null

Legal company name as registered with the SEC

sic_code
string | null

Standard Industrial Classification code identifying the company's industry

sic_description
string | null

Human-readable description of the SIC industry code

state_of_incorporation
string | null

US state (or country) where the company is legally incorporated

fiscal_year_end
string | null

Month and day of fiscal year end (MM-DD format, e.g. '12-31')