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

# 列出交易阶段

> 列出交易阶段（商机阶段）。



## OpenAPI

````yaml openapi/zh/apollo.json GET /apollo/opportunity_stages
openapi: 3.0.3
info:
  title: Apollo API
  version: 1.0.0
  description: 通过 AIsa 统一网关公开的 Apollo API 端点。
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /apollo/opportunity_stages:
    get:
      summary: 列出交易阶段
      description: 列出交易阶段（商机阶段）。需要主 API 密钥。
      operationId: get_apollo_opportunity_stages
      responses:
        '200':
          description: 成功响应
          content:
            application/json:
              schema:
                type: object
                properties:
                  opportunity_stages:
                    type: string
                    description: 商机阶段列表
                  opportunity_stages[].id:
                    type: string
                    description: 阶段 ID
                  opportunity_stages[].team_id:
                    type: string
                    description: 团队 ID
                  opportunity_stages[].name:
                    type: string
                    description: 名称
                  opportunity_stages[].display_order:
                    type: integer
                    description: 显示顺序
                  opportunity_stages[].forecast_category_cd:
                    type: string
                    description: 预测类别代码
                  opportunity_stages[].is_won:
                    type: boolean
                    description: 是否已赢单
                  opportunity_stages[].is_closed:
                    type: boolean
                    description: 是否已关闭
                  opportunity_stages[].probability:
                    type: number
                    description: 概率
                  opportunity_stages[].description:
                    type: string
                    description: 描述
                  opportunity_stages[].opportunity_pipeline_id:
                    type: string
                    description: 商机管道 ID
                  opportunity_stages[].type:
                    type: string
                    description: 类型
        '400':
          description: 错误请求
        '401':
          description: 未授权
        '429':
          description: 超出速率限制
        '500':
          description: 内部服务器错误
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````