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.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

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

address
string

Company's street address

alias
string

Comma-separated list of alternative names or aliases for the company

city
string

City where the company is headquartered

country
string

Country where the company is headquartered

currency
string

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

cusip
string

CUSIP identifier

description
string

Detailed business description

employeeTotal
integer

Total number of employees

estimateCurrency
string

Currency for earnings estimates

exchange
string

Primary stock exchange where the company is listed

sector
string

Industry sector classification

ggroup
string

GICS group classification

gind
string

GICS industry classification

gsector
string

GICS sector classification

gsubind
string

GICS sub-industry classification

ipo
string

Initial public offering date in YYYY-MM-DD format

irUrl
string

Investor relations website URL

isin
string

ISIN identifier

lei
string

Legal Entity Identifier

URL to the company's logo image (proxied through Aries API)

marketCapCurrency
string

Currency for market capitalization

marketCapitalization
number

Current market capitalization

naics
string

NAICS code

naicsNationalIndustry
string

NAICS national industry classification

naicsSector
string

NAICS sector classification

naicsSubsector
string

NAICS subsector classification

name
string

Official company name

phone
string

Company's primary contact phone number

sedol
string

SEDOL identifier

shareOutstanding
number

Total number of outstanding shares

state
string

State where the company is headquartered

ticker
string

Stock ticker symbol

weburl
string

Company's official website URL