> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reportify.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Follow Group

> Get a follow group by ID

## 获取关注组详情

**URL**: `/v1/following/groups/{group_id}`\
**方法**: `GET`\
**描述**: 根据获取关注组的详细信息

### 请求参数

| 参数名       | 类型  | 描述     |
| --------- | --- | ------ |
| group\_id | str | 关注组 ID |

### 响应参数

| 参数名            | 类型   | 描述     |
| -------------- | ---- | ------ |
| group\_id      | str  | 关注组 ID |
| name           | str  | 组名称    |
| count          | int  | 关注项数量  |
| follow\_values | list | 关注项列表  |

每个关注项包含：

| 参数名           | 类型  | 描述             |
| ------------- | --- | -------------- |
| follow\_type  | int | 关注类型：1=公司，3=频道 |
| follow\_value | str | 关注值            |


## OpenAPI

````yaml GET /v1/following/groups/{group_id}
openapi: 3.1.0
info:
  title: Reportify API
  version: 1.0.0
  description: API documentation for Reportify's document management and search services.
servers:
  - url: https://api.reportify.cn
    description: Production server
security:
  - BearerAuth: []
paths:
  /v1/following/groups/{group_id}:
    get:
      tags:
        - openapi-following-group
      summary: Get Follow Group by ID
      description: Get a follow group by ID
      operationId: get_follow_group
      parameters:
        - name: group_id
          in: path
          required: true
          schema:
            type: string
            title: Group Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FollowGroupResultWithValues'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    FollowGroupResultWithValues:
      type: object
      properties:
        group_id:
          type: string
          title: Group Id
          description: Group ID
        name:
          type: string
          title: Name
          description: Group name
        count:
          type: integer
          title: Count
          description: Number of members
        follow_values:
          type: array
          items:
            $ref: '#/components/schemas/FollowValue'
          title: Follow Values
          description: List of follow values
      required:
        - group_id
        - name
        - count
        - follow_values
      title: FollowGroupResultWithValues
      description: Follow group result with follow values
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FollowValue:
      type: object
      properties:
        follow_type:
          type: integer
          title: Follow Type
          description: Follow type (1=company, 2=channel)
        follow_value:
          type: string
          title: Follow Value
          description: Follow value (e.g., US:AAPL, HK:00700)
      required:
        - follow_type
        - follow_value
      title: FollowValue
      description: Follow value definition
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Enter your Bearer token

````