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

# List people at a company

> The org chart Revcenter has assembled for one firm: everyone attached to it across this workspace's searches, deduplicated. Capped at 200 rows.



## OpenAPI

````yaml /openapi.json get /api/companies/{id}/people
openapi: 3.1.0
info:
  title: Revcenter API
  description: >-
    Search, enrich, and activate people and companies. Two authentication
    surfaces share one host: the bearer-token API under `/v1` for
    server-to-server and agent use, and the workspace-session API under `/api`
    that the Revcenter app itself runs on.
  version: '2026-08-12'
servers:
  - url: https://api.revcenter.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Search
    description: Web search, search runs, results, exports, and shareable shortlists.
  - name: People
    description: Person search, profile enrichment, and the workspace contact pool.
  - name: Companies
    description: Company search, company enrichment, and org-chart people.
  - name: Campaigns
    description: Plan, publish, and launch outbound sequences on Smartlead and HeyReach.
  - name: Account
    description: Health, usage totals, and cost events.
paths:
  /api/companies/{id}/people:
    get:
      tags:
        - Companies
      summary: List people at a company
      description: >-
        The org chart Revcenter has assembled for one firm: everyone attached to
        it across this workspace's searches, deduplicated. Capped at 200 rows.
      operationId: listCompanyPeople
      parameters:
        - name: id
          in: path
          required: true
          description: The firm ID.
          schema:
            type: string
      responses:
        '200':
          description: People at the company.
          content:
            application/json:
              schema:
                type: object
                properties:
                  people:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        title:
                          type:
                            - string
                            - 'null'
                          description: The title as it appears on the org chart.
                        candidate:
                          $ref: '#/components/schemas/Candidate'
        '401':
          $ref: '#/components/responses/AppUnauthorized'
        '502':
          $ref: '#/components/responses/AppUpstreamError'
      security:
        - sessionCookie: []
components:
  schemas:
    Candidate:
      type: object
      properties:
        id:
          type: string
        firstName:
          type:
            - string
            - 'null'
        lastName:
          type:
            - string
            - 'null'
        roleTitle:
          type:
            - string
            - 'null'
        company:
          type:
            - string
            - 'null'
        metro:
          type:
            - string
            - 'null'
        profileUrl:
          type:
            - string
            - 'null'
          format: uri
        photoUrl:
          type:
            - string
            - 'null'
          format: uri
        headline:
          type:
            - string
            - 'null'
        email:
          type:
            - string
            - 'null'
          description: Populated only after contact enrichment.
        phone:
          type:
            - string
            - 'null'
          description: Populated only after contact enrichment.
        hydrated:
          type:
            - boolean
            - 'null'
          description: >-
            Whether the full profile was fetched, or only search-level data is
            known.
        signals:
          type: array
          items:
            type: object
            additionalProperties: true
    AppError:
      type: object
      description: >-
        The error shape used by every `/api` endpoint. Flatter than the `/v1`
        shape, and `code` appears only where the UI branches on it.
      properties:
        error:
          type: string
        code:
          type: string
          examples:
            - search_unavailable
  responses:
    AppUnauthorized:
      description: >-
        Not signed in, no active workspace, or the account lacks the role this
        action needs. A frozen account gets `403` with code `frozen`.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/AppError'
          examples:
            signIn:
              value:
                error: Sign in required
    AppUpstreamError:
      description: A downstream service or the database failed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/AppError'
          examples:
            upstream:
              value:
                error: Spec extraction failed
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Revcenter API key: `Authorization: Bearer rvc_live_...`. Keys are
        scoped, rate limited per key, and metered per workspace.
    sessionCookie:
      type: apiKey
      in: cookie
      name: session
      description: >-
        A signed-in workspace session, sent as a browser cookie. Requests must
        include credentials, and act on the session's active workspace.

````