Skip to main content
GET
/
company
/
facts
Get company facts
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/company/facts \
  --header 'Authorization: Bearer <token>'
{
  "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
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ticker
string

The ticker symbol.

cik
string

The CIK of the company.

Response

Company facts response

company_facts
object