Financial Data API

Get Company Profile

Retrieve a comprehensive profile for any public company. The response includes the company's business description, market capitalization, sector, industry, CEO name, number of employees, IPO date, website URL, dividend information, and 30+ additional data points. This is the go-to endpoint for building company overview pages, populating research dashboards, and gathering fundamental company information.

You can look up a company by ticker symbol (AAPL), CIK (0000320193), CUSIP (037833100), or ISIN (US0378331005) - Apple (AAPL) is available on the free tier. Results are live.

GEThttps://api.roic.ai/v2/company/profile/{identifier}

Parameters

Path Parameters

identifierstringrequired

Company identifier — supports ticker symbol (e.g., `AAPL`), CIK, CUSIP, or ISIN.

Example: AAPL

Query Parameters

apikeystringrequired

Your API key for authentication.

formatstringoptional

Response format. Use `json` for JSON (default) or `excel` for tab-separated values compatible with Google Sheets and Excel.

Default: jsonValues: json, excel

Code Examples

curl "https://api.roic.ai/v2/company/profile/AAPL?apikey=YOUR_API_KEY"

Response

Response200 OK
{
  "symbol": "AAPL",
  "name": "Apple Inc.",
  "exchange": "NASDAQ",
  "sector": "Technology",
  "industry": "Consumer Electronics",
  "market_cap": 3200000000000,
  "description": "Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide.",
  "ceo": "Timothy D. Cook",
  "employees": 164000,
  "ipo_date": "1980-12-12",
  "website": "https://www.apple.com",
  "country": "United States",
  "currency": "USD"
}

Use Cases

  • Build company overview pages with business descriptions, key metrics, and executive information
  • Populate a research dashboard with sector, industry, and market cap data for portfolio companies
  • Create stock comparison tools that display side-by-side company profiles
  • Enrich ticker search results with additional company context like sector, market cap, and employee count
  • Feed company metadata into AI-powered financial analysis tools and chatbots