GET
/
v1
/
channels
/
followings
/
docs
curl --request GET \
  --url https://api.reportify.cn/v1/channels/followings/docs \
  --header 'Authorization: Bearer <token>'
{
  "total_count": 0,
  "total_page": 0,
  "page_num": 1,
  "page_size": 10,
  "docs": [
    {
      "doc_id": "<string>",
      "title": "<string>",
      "url": "<string>",
      "institution": "<string>",
      "author": "<string>",
      "published_at": 123,
      "category": "filings",
      "market": "cn",
      "ticker": "<string>",
      "symbol": "<string>",
      "company_name": "<string>",
      "logo": "<string>",
      "companies": [
        {
          "name": "<string>",
          "logo": "<string>",
          "stocks": [
            {
              "symbol": "<string>",
              "market": "<string>",
              "code": "<string>"
            }
          ]
        }
      ],
      "tags": {},
      "metadatas": {},
      "report_type": 123,
      "channel_id": "<string>",
      "channel_name": "<string>"
    }
  ]
}

获取用户关注的账号的文档列表

URL: /v1/channels/{channel_id}/followings/docs
方法: GET
描述: 关注账号文档列表

请求参数

参数名类型描述
channel_idstr账号唯一 ID。
page_numint当前页码,默认值为 1
page_sizeint每页条目数,默认值为 10

响应参数

参数名类型描述
page_numint当前页码。
page_sizeint每页条目数。
total_pageint总页数。
total_countint总条目数。
docsarray文档数组,每个文档包含以下字段:
  idstr文档唯一 ID。
  titlestr文档标题。
  urlstr文档网页链接。
  institutionstr发布机构。
  authorstr作者。
  published_atstr发布时间,格式为 YYYY-MM-DDTHH:MM:SS.000Z
  categorystr文档类别(financials, transcripts, reports, filings, news, socials, files)。
  marketstr市场区域(cn, hk, us)。
  symbolstr股票代码。
  company_namestr公司名称。
  summarystr文档摘要。暂未支持
  tagsdict标签数组。
    keystr标签类型(如 industry, company, person, event)。
    valuearray标签内容数组。
  metadatasdict元数据数组,包含以下字段:
    keystr元数据类型(如 periods, entities)。
    valuearray元数据内容数组。
  channel_idstr账号唯一 ID。
  channel_namestr账号名称。

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

channel_ids
string

Channel IDs

page_num
integer
default:1
page_size
integer
default:10

Response

200
application/json

Successful Response

The response is of type object.