# 【实时】知乎话题榜

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v2/zhihu:
    get:
      summary: 【实时】知乎话题榜
      deprecated: false
      description: ''
      tags:
        - 🔥 热门榜单
      parameters:
        - name: encoding
          in: query
          description: 编码方式，支持 text/json/markdown
          required: false
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        title:
                          type: string
                          title: 话题标题
                        detail:
                          type: string
                          title: 话题详情
                        cover:
                          type: string
                          title: 封面图 URL
                        answer_cnt:
                          type: integer
                          title: 回答数
                        follower_cnt:
                          type: integer
                          title: 关注数
                        comment_cnt:
                          type: integer
                          title: 评论数
                        created_at:
                          type: integer
                          title: 创建时间戳（13 位）
                        created:
                          type: string
                          title: 创建时间字符串
                        link:
                          type: string
                          title: 原文链接
                        hot_value_desc:
                          type: string
                          title: 热度描述
                      required:
                        - title
                        - detail
                        - cover
                        - hot_value_desc
                        - answer_cnt
                        - follower_cnt
                        - comment_cnt
                        - created_at
                        - created
                        - link
                      x-apifox-orders:
                        - title
                        - detail
                        - cover
                        - hot_value_desc
                        - answer_cnt
                        - follower_cnt
                        - comment_cnt
                        - created_at
                        - created
                        - link
                required:
                  - code
                  - message
                  - data
                x-apifox-orders:
                  - code
                  - message
                  - data
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 🔥 热门榜单
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/5757303/apis/api-254026504-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://60s.viki.moe
    description: 正式环境
security: []

```
