Skip to content

Company Profile

GET /v1/quote/{symbol}/f10/company-profile

Get company detail labels (company overview, listing info, key metrics, etc.) displayed in a "label name / label value" format. ETF / REIT automatically routes to fund data source.

Parameters

NameTypeInRequiredDescription
symbolstringpathyesSymbol code, e.g. HK.00700.

Request Example

bash
curl "$ip/v1/quote/HK.00700/f10/company-profile" | jq

Response Fields

Returns data.items[], each item is a company detail label.

FieldTypeDescription
namestringLabel name (localized display text, e.g. Symbol / Company Name / Website).
valuestringLabel value.
field_typeintLayout type. 0=text, 1=link, 2=standalone heading (long text block).
attribute_typeintLabel semantic type (machine-readable stable key). Not returned for ETF / REIT paths. See enum table below.

Enum attribute_type (label semantic type)

ValueMeaningValueMeaningValueMeaning
1A-share Short Name19Company Address37Chairman
2A-share Code20Office Address38Legal Representative
3B-share Short Name21Office Zip Code39Board Secretary
4B-share Code22Registered Address40Business License No.
5H-share Short Name23Company Website41Accounting Firm
6H-share Code24City42Securities Representative
7Symbol25Country43Legal Counsel
8ISIN26Zip Code44Company Category
9Company Name27Fax45Qualified Accountant
10Listing Date28Email46Auditor
11Issue Price29Company Profile47Registered Office
12Issue Quantity30CEO48Head Office & Principal Place of Business
13Incorporation Date31Security Type49IR Link
14Listed Exchange32ADS Conversion Ratio50Industry
15Market33Province (A-share)51Region
16Phone34State (US)52General Manager
17Fiscal Year End35Business53Share Registrar (AU only)
18Employees36Business Scope

Supported Markets

  • Supported markets: HK / US / SH / SZ / BJ / AU / CA / JP / SG.
  • Categories: Equities / ETF / REIT. Futures, options and other derivatives return unsupported.
  • Sectors / OTC bonds / OTC funds etc. return invalid_symbol.

Error Codes

ret_codeerror.codeTrigger ConditionSuggested Action
0Success
-3invalid_parameterSymbol missing or invalid formatCheck symbol spelling and format
-7invalid_symbolCannot resolve to a securityConfirm it is a supported market equity/ETF code
-8unsupportedCategory not supported (futures/options etc.)Query equities instead
-10no_dataValid symbol but no company profile dataNo data available for this symbol, no retry needed

Response Example

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": {
    "items": [
      { "field_type": 0, "attribute_type": 7, "name": "Symbol", "value": "00700" },
      { "field_type": 0, "attribute_type": 9, "name": "Company Name", "value": "TENCENT" },
      { "field_type": 0, "attribute_type": 8, "name": "ISIN", "value": "KYG875721634" },
      { "field_type": 0, "attribute_type": 10, "name": "Listing Date", "value": "Jun 16, 2004" },
      { "field_type": 0, "attribute_type": 18, "name": "Employees", "value": "114848" },
      { "field_type": 1, "attribute_type": 23, "name": "Website", "value": "http://www.tencent.com" },
      { "field_type": 2, "attribute_type": 35, "name": "Business", "value": "Tencent Holdings Ltd is an investment holding company ..." }
    ]
  }
}