> ## 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 POST /apollo/accounts/search
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/accounts/search:
    post:
      summary: 搜索账户
      description: 搜索账户。需要主 API 密钥。
      operationId: post_apollo_accounts_search
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                q_organization_name:
                  type: string
                  description: 组织名称查询
                account_stage_ids:
                  type: string
                  description: 按账户阶段 ID 筛选
                account_label_ids:
                  type: string
                  description: 按账户标签 ID 筛选
                sort_by_field:
                  type: string
                  description: >-
                    排序字段（例如
                    account_last_activity_date、account_created_at、account_updated_at）
                sort_ascending:
                  type: boolean
                  description: 升序排序
                page:
                  type: integer
                  description: 页码
                per_page:
                  type: integer
                  description: 每页条目数
      responses:
        '200':
          description: 成功响应
          content:
            application/json:
              schema:
                type: object
                properties:
                  breadcrumbs:
                    type: array
                    items:
                      type: object
                      description: 面包屑导航
                      additionalProperties: true
                    description: 响应数组
                  partial_results_only:
                    type: boolean
                    description: 响应字段
                  has_join:
                    type: boolean
                    description: 响应字段
                  disable_eu_prospecting:
                    type: boolean
                    description: 响应字段
                  partial_results_limit:
                    type: integer
                    description: 响应字段
                  pagination:
                    type: object
                    description: 分页元数据
                    additionalProperties: true
                  accounts:
                    type: array
                    items:
                      type: object
                      description: 账户
                      additionalProperties: true
                    description: 响应数组
                  num_fetch_result:
                    type: object
                    nullable: true
                    description: 获取结果元数据
                    additionalProperties: true
        '400':
          description: 错误请求
        '401':
          description: 未授权
        '429':
          description: 超出速率限制
        '500':
          description: 内部服务器错误
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````