Skip to main content
GET
/
v1
/
company
/
profile
Get Company Profile
curl --request GET \
  --url https://api.aries.com/v1/company/profile \
  --header 'Authorization: Bearer <token>'
{
  "address": "One Apple Park Way",
  "alias": "Apple Computer Inc, Apple Computer",
  "city": "Cupertino",
  "country": "US",
  "currency": "USD",
  "cusip": "037833100",
  "description": "Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide.",
  "employeeTotal": 161000,
  "estimateCurrency": "USD",
  "exchange": "NASDAQ NMS - GLOBAL MARKET",
  "sector": "Technology",
  "ggroup": "Technology Hardware & Equipment",
  "gind": "Technology Hardware, Storage & Peripherals",
  "gsector": "Information Technology",
  "gsubind": "Technology Hardware, Storage & Peripherals",
  "ipo": "1980-12-12",
  "irUrl": "https://investor.apple.com/",
  "isin": "US0378331005",
  "lei": "HWUPKR0MPOU8FGXBT394",
  "logo": "https://api.aries.com/v1/logos/image/a/path",
  "marketCapCurrency": "USD",
  "marketCapitalization": 4108269.25,
  "naics": "334220",
  "naicsNationalIndustry": "Radio and Television Broadcasting and Wireless Communications Equipment Manufacturing",
  "naicsSector": "Manufacturing",
  "naicsSubsector": "Computer and Electronic Product Manufacturing",
  "name": "Apple Inc",
  "phone": "14089961010",
  "sedol": "2046251",
  "shareOutstanding": 14776.349609375,
  "state": "CA",
  "ticker": "AAPL",
  "weburl": "https://www.apple.com/"
}
Logo URL: The logo field in the response is a proxied image URL. Use it as-is to display the company logo (e.g. in an <img src="...">). The URL has the form https://api.aries.com/v1/logos/image/... and does not expire; the API serves the image via its logo proxy so the underlying provider is not exposed.

Authorizations

Authorization
string
header
required

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

Query Parameters

symbol
string

Stock ticker symbol (e.g., AAPL). Optional if ISIN or CUSIP provided.

Example:

"AAPL"

isin
string

International Securities Identification Number. Optional if symbol or CUSIP provided.

Example:

"US0378331005"

cusip
string

Committee on Uniform Securities Identification Procedures code. Optional if symbol or ISIN provided.

Example:

"037833100"

Response

Company profile retrieved successfully

country
string

Country where the company is headquartered

currency
string

Currency used for financial reporting (e.g., USD, EUR)

exchange
string

Primary stock exchange where the company is listed

finnhubIndustry
string

Industry classification according to Finnhub taxonomy

ipo
string

Initial public offering date in YYYY-MM-DD format

URL to the company's logo image

marketCapitalization
number

Current market capitalization in millions

name
string

Official company name

phone
string

Company's primary contact phone number

shareOutstanding
number

Total number of outstanding shares in millions

ticker
string

Stock ticker symbol

weburl
string

Company's official website URL