Get Single Company Details
Feature Overview
OpenAPI JSON Spec
Retrieve the profile of a single company based on stock symbol or company name keyword — identity, classification, and descriptive attributes. Suitable for company detail pages, company search, and more. Valuation and financial metrics are served by the dedicated /stocks/market-metrics and /stocks/financial-metrics endpoints.
Main Use Cases
- Company Detail Pages: Display the profile of a single company
- Company Search: Resolve a stock symbol or name keyword to a company profile
- Mobile Applications: Provide data interface for company detail pages
- Desktop Software: Provide company data for professional investment software
Query Parameter Description
Supports two query methods:
- Exact Query: Find company precisely by stock symbol
- Fuzzy Query: Fuzzy match by company name keyword
Response Data Description
The returned company profile includes:
- Basic Info: Stock symbol, company name, industry classification, exchange
- Profile: Description, website, CEO, employees, country, IPO date, listing flags (is_etf/is_adr/is_fund)
Valuation and financial metrics are not returned here — use /stocks/market-metrics (PE/PS/market cap) and /stocks/financial-metrics (revenue/EPS/ROE TTM).
Usage Examples
-
Query Apple company by stock symbol:
?symbol=AAPL -
Query by company name keyword:
?name_kw=Apple -
Use both stock symbol and name keyword:
?symbol=AAPL&name_kw=Apple
Best Practices
- Prioritize using stock symbol for exact queries, faster response
- Name keyword query supports fuzzy matching, suitable for search functionality
- Recommend caching query results for popular companies
- For mobile applications, preload data for commonly used companies
Important Notes
- Symbol parameter must be uppercase, e.g., AAPL, GOOGL
- name_kw parameter supports Chinese and English, case-insensitive
- If both symbol and name_kw are provided, symbol takes priority
Authorizations
API Key authentication. Example: "your-api-key-here"
Query Parameters
Stock symbol (uppercase, e.g., AAPL)
Company name keyword (English, case-insensitive)

