Skip to main content
POST
/
v1
/
stock
/
company-overview
Company Overview
curl --request POST \
  --url https://api.reportify.cn/v1/stock/company-overview \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "symbols": "HK:00700,US:AAPL",
  "names": "腾讯,苹果"
}
'
{
  "status": 123,
  "code": 123,
  "message": "<string>",
  "data": {}
}

公司概览

URL: /v1/stock/company-overview 方法: POST
描述: 获取公司综合信息,包括基本面和业务概览。

请求参数

参数名类型必填描述
symbolsstr股票代码,支持多个,用逗号分隔,如 00700,AAPL
namesstr股票名称,支持多个,用逗号分隔,如 腾讯,苹果
symbolsnames 至少需要提供一个参数。

响应参数

参数名类型描述
statusintHTTP 状态码。
codeint响应代码(0 表示成功)。
messagestr响应消息。
dataobject公司信息数据。
  countrystr注册国家/地区代码。
  nature_of_companystr公司性质。
  fiscal_year_endstr财年结束日期(MM-DD)。
  citystr所在城市。
  stockListarray股票列表信息。
    stock_full_namestr股票全称。
    marketstr市场代码。
    symbolstr股票代码。
    stock_english_namestr股票英文名称。
    industry_HS_1str行业分类一级。
    industry_HS_2str行业分类二级。
    stock_namestr股票名称。
    asset_classstr资产类别。
    stock_english_full_namestr股票英文全称。
    exchangestr交易所代码。
    industry_HS_3str行业分类三级。
    ipo_datestrIPO 日期(YYYY-MM-DD)。
  company_english_full_namestr公司英文全称。
  provincestr省份/地区。
  faxstr传真号码。
  emailstr联系邮箱。
  websitestr公司网站。
  addressstr注册地址。
  company_english_namestr公司英文名称。
  telephonestr联系电话。
  registration_datestr注册日期(YYYY-MM-DD)。
  office_addressstr办公地址。
  board_secretarystr董事会秘书。
  company_namestr公司名称。
  company_full_namestr公司全称。
  main_businessstr主营业务。

请求示例

cURL
curl -X POST https://api.reportify.cn/v1/stock/company-overview \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
    "symbols": "00700,AAPL"
}'
Python
import requests

url = "https://api.reportify.cn/v1/stock/company-overview"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}

# 通过股票代码查询
data = {"symbols": "00700,AAPL"}

# 或者通过股票名称查询
# data = {"names": "腾讯,苹果"}

response = requests.post(url, headers=headers, json=data)
print(response.json())

响应示例

{
  "status": 200,
  "code": 0,
  "message": "",
  "data": {
    "country": "CYM",
    "nature_of_company": "民营企业",
    "fiscal_year_end": "12-31",
    "city": "开曼群岛",
    "stockList": [
      {
        "stock_full_name": "腾讯控股有限公司",
        "market": "HK",
        "symbol": "00700",
        "stock_english_name": "TENCENT",
        "industry_HS_1": "资讯科技业",
        "industry_HS_2": "软件服务",
        "stock_name": "腾讯控股",
        "asset_class": "H shares",
        "stock_english_full_name": "Tencent Holdings Limited",
        "exchange": "HK",
        "industry_HS_3": "数码解决方案服务",
        "ipo_date": "2004-06-16"
      }
    ],
    "company_english_full_name": "Tencent Holdings Limited",
    "province": "开曼群岛",
    "fax": "852-25290222",
    "email": "ir@tencent.com",
    "website": "www.tencent.com",
    "address": "Cricket Square Hutchins Drive, P.O.Box 2681 Grand Cayman KY1-1111 Cayman Islands",
    "company_english_name": "TENCENT",
    "telephone": "(86-755)86013388 转 87329",
    "registration_date": "2004-03-26",
    "office_address": "香港德辅道中166-168号E168大厦4楼A室",
    "board_secretary": "刘淑仪",
    "company_name": "腾讯控股",
    "company_full_name": "腾讯控股有限公司",
    "main_business": "在中国为用户提供互联网增值服务、移动及电信增值服务、网络广告服务以及电子商务交易服务。"
  }
}

错误响应

状态码描述
422请求参数验证失败。

Authorizations

Authorization
string
header
required

Enter your Bearer token

Body

application/json

Input schema for company overview

symbols
string

The symbol of the stock. You can enter multiple items, separated by commas(,)

Example:

"HK:00700,US:AAPL"

names
string

The name of the stock. You can enter multiple items, separated by commas(,)

Example:

"腾讯,苹果"

Response

Successful Response

Generic response wrapper from stock API

status
integer

HTTP status code

code
integer

Response code (0 for success)

message
string

Response message

data
Data · object

Response data (structure varies by endpoint)