Skip to content

公司簡介

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

獲取公司詳情標籤列表(公司簡介、上市資訊、關鍵指標等以標籤名/標籤值形式展示的靜態資料)。ETF / REIT 自動路由到基金資料源。

請求參數

參數類型位置必填說明
symbolstring路徑標的代碼,如 HK.00700

請求示例

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

響應字段

返回 data.items[],每項為一個公司詳情標籤。

字段類型說明
namestring標籤名(本地化展示文本,如 Symbol / Company Name / Website)。
valuestring標籤值。
field_typeint排版類型。0=文本,1=連結,2=獨立標題(長文塊)。
attribute_typeint標籤語義類型(機器可讀穩定鍵)。ETF / REIT 路徑不返回。詳見下方枚舉表。

枚舉 attribute_type(標籤語義類型)

取值含義取值含義取值含義
1A股簡稱19公司地址37董事長
2A股代碼20辦公地址38法人代表
3B股簡稱21辦公地址郵編39董事會秘書
4B股代碼22註冊地址40營業執照號
5H股簡稱23公司網址41會計師事務所
6H股代碼24城市42證券事務代表
7代碼(Symbol)25國家43法律顧問
8ISIN26郵編44公司類別
9公司名稱27傳真45合資格會計師
10上市時間28郵箱46審計機構
11發行價29公司簡介47註冊辦事處
12發行數量30CEO48總辦事處及主要營業地點
13成立日期31證券類型49IR連結
14上市交易所32ADS轉換比例50所屬行業
15所屬市場33省份(A股)51所在地區
16電話34州(美股)52總經理
17年結日35公司業務53股份登記處(目前僅 AU)
18員工數量36經營範圍

限制範圍

  • 支持市場:HK / US / SH / SZ / BJ / AU / CA / JP / SG。
  • 支持品類:正股 / ETF / REIT。期貨、期權等衍生品返回 unsupported。
  • 板塊 / 場外債券 / 場外基金等返回 invalid_symbol。

錯誤碼

ret_codeerror.code觸發條件處理建議
0成功
-3invalid_parametersymbol 缺失或格式非法檢查 symbol 拼寫與格式
-7invalid_symbol無法解析為證券確認為受支持市場的正股/ETF 代碼
-8unsupported品類不支持(期貨/期權等)改查正股
-10no_data標的合法但當前無公司資料該標的暫無資料,無需重試

響應示例

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 ..." }
    ]
  }
}