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

# List People

> Searches people records for the authenticated API client. Filters match at the person level across all contacts attached to the person.



## OpenAPI

````yaml GET /public/people
openapi: 3.0.3
info:
  title: RevyOps API
  version: 1.0.0
servers:
  - url: https://app.revyops.com/api
security:
  - ApiKeyAuth: []
paths:
  /public/people:
    get:
      tags:
        - public
      description: >-
        Searches people records for the authenticated API client. Filters match
        at the person level across all contacts attached to the person.
      operationId: Search for people
      parameters:
        - in: query
          name: domain
          schema:
            type: string
          description: Filter by company domain
        - in: query
          name: email
          schema:
            type: string
          description: Filter by email
        - in: query
          name: firstname
          schema:
            type: string
          description: Filter by first name
        - in: query
          name: lastname
          schema:
            type: string
          description: Filter by last name
        - in: query
          name: linkedin_url
          schema:
            type: string
          description: Filter by LinkedIn URL
        - in: query
          name: page
          schema:
            type: integer
          description: Page number (1-based)
        - in: query
          name: page_size
          schema:
            type: integer
          description: Number of people records per page (max 100)
        - in: query
          name: phone
          schema:
            type: string
          description: Filter by phone number
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedPersonResponse'
          description: Paginated list of people records.
        '403':
          description: Forbidden. Missing authentication credentials or invalid API key.
        '500':
          description: Internal Server Error. An unexpected error occurred on the server.
components:
  schemas:
    PaginatedPersonResponse:
      type: object
      properties:
        count:
          type: integer
        total_pages:
          type: integer
        current_page:
          type: integer
        page_size:
          type: integer
        results:
          type: array
          items:
            $ref: '#/components/schemas/PersonPublic'
      required:
        - count
        - current_page
        - page_size
        - results
        - total_pages
    PersonPublic:
      type: object
      properties:
        id:
          type: integer
        first_name:
          type: string
          nullable: true
        last_name:
          type: string
          nullable: true
        emails:
          type: array
          items:
            $ref: '#/components/schemas/PersonIdentifierItem'
        linkedin_urls:
          type: array
          items:
            $ref: '#/components/schemas/PersonIdentifierItem'
        phones:
          type: array
          items:
            $ref: '#/components/schemas/PersonIdentifierItem'
        custom_fields:
          type: array
          items:
            $ref: '#/components/schemas/PersonPublicCustomField'
      required:
        - custom_fields
        - emails
        - first_name
        - id
        - last_name
        - linkedin_urls
        - phones
    PersonIdentifierItem:
      type: object
      properties:
        value:
          type: string
        company_id:
          type: integer
          nullable: true
        job_title:
          type: string
          nullable: true
        status:
          type: string
          nullable: true
        previous_status:
          type: string
          nullable: true
        first_campaign_email_sent:
          type: string
          format: date-time
          nullable: true
        last_campaign_email_sent:
          type: string
          format: date-time
          nullable: true
        last_reply_received:
          type: string
          format: date-time
          nullable: true
        origin:
          type: string
          nullable: true
      required:
        - company_id
        - first_campaign_email_sent
        - job_title
        - last_campaign_email_sent
        - last_reply_received
        - origin
        - previous_status
        - status
        - value
    PersonPublicCustomField:
      type: object
      properties:
        id:
          type: integer
        updated_time:
          type: string
          format: date-time
        field_name:
          type: string
        field_value:
          type: string
      required:
        - field_name
        - field_value
        - id
        - updated_time
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````