GET
/companies/{identifier}Get company information by ticker symbol or CIK number
$0.01 per request
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| identifier | string | Yes | Stock ticker (e.g., AAPL, MSFT) or 10-digit CIK number |
Request
curl "https://api.redcent.io/companies/AAPL" \
-H "X-PAYMENT: <payment-token>"Response
{
"cik": "0000320193",
"ticker": "AAPL",
"name": "Apple Inc.",
"sicCode": "3571",
"sicDescription": "Electronic Computers",
"stateOfIncorporation": "CA",
"fiscalYearEnd": "0926",
"exchange": "Nasdaq",
"phone": "(408) 996-1010",
"address": {
"street1": "ONE APPLE PARK WAY",
"city": "CUPERTINO",
"stateOrCountry": "CA",
"zipCode": "95014"
}
}