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

# List Prospects With Statistics

> Returns prospects in a campaign together with their list membership and per-prospect engagement counters (posts fetched, direct and indirect comments, likes, connection status).



## OpenAPI

````yaml https://api.goextrovert.com/client/v2/docs-json get /api/client/v1/prospects
openapi: 3.0.0
info:
  title: Extrovert Client API
  description: >-
    Public API for Extrovert platform integration. Use your API key for
    authentication.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.goextrovert.com/
    description: API Server
security: []
tags: []
paths:
  /api/client/v1/prospects:
    get:
      tags:
        - Prospects (legacy)
      summary: List Prospects With Statistics
      description: >-
        Returns prospects in a campaign together with their list membership and
        per-prospect engagement counters (posts fetched, direct and indirect
        comments, likes, connection status).
      operationId: TargetUserClientApiController_getProspectsUrlsListWithStatistics
      parameters:
        - description: ID of the campaign to list prospects from.
          examples:
            example1:
              value: 8d256aa6-9b12-49a7-93ee-bf41634b5b60
          required: true
          name: campaignId
          in: query
          schema:
            type: string
            format: uuid
        - description: >-
            Optional prospect list ID to narrow the result to a single list
            within the campaign.
          examples:
            example1:
              value: cf33282b-b171-4d23-ae02-848499d793e4
          required: false
          name: listId
          in: query
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetListResponseDto2'
        '401':
          description: Invalid or missing API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientApiErrorResponseDto'
      security:
        - api-key: []
components:
  schemas:
    GetListResponseDto2:
      type: object
      properties:
        status:
          type: string
          description: Response status
          enum:
            - success
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                format: uuid
                description: Prospect ID.
                example: cf33282b-b171-4d23-ae02-848499d793e4
              fullName:
                type: string
                description: Prospect full name.
              firstName:
                type: string
                description: Prospect first name.
              lastName:
                type: string
                description: Prospect last name.
              campaignId:
                type: string
                format: uuid
                description: ID of the campaign the prospect belongs to.
                example: 8d256aa6-9b12-49a7-93ee-bf41634b5b60
              campaignName:
                type: string
                description: Name of the campaign the prospect belongs to.
              listId:
                type: string
                format: uuid
                description: ID of the prospect list the prospect belongs to.
                example: cf33282b-b171-4d23-ae02-848499d793e4
              listName:
                type: string
                description: Name of the prospect list the prospect belongs to.
              createdAt:
                type: string
                description: >-
                  Timestamp when the prospect was added to the campaign, ISO
                  8601.
                example: '2025-06-30T14:02:07.456Z'
              postsFetched:
                type: number
                description: >-
                  Total posts pulled from the prospect's LinkedIn profile so
                  far.
              directComments:
                type: number
                description: >-
                  Direct comments: comments the campaign owner has already
                  posted under the prospect's own posts.
              indirectComments:
                type: number
                description: >-
                  Indirect comments: comments the campaign owner has already
                  posted under indirect posts — posts from people the prospect
                  engages with (content the prospect is likely to see in their
                  feed).
              likes:
                type: number
                description: Likes the campaign owner has placed on the prospect's posts.
              oldestFetchedPost:
                description: Date of the oldest post fetched for the prospect, ISO 8601.
                type: string
                example: '2025-06-30T14:02:07.456Z'
              newestFetchedPost:
                description: Date of the newest post fetched for the prospect, ISO 8601.
                type: string
                example: '2025-06-30T14:02:07.456Z'
              recentDirectCommentDate:
                description: >-
                  Date of the most recent direct comment on the prospect's own
                  posts, ISO 8601.
                type: string
                example: '2025-06-30T14:02:07.456Z'
              recentIndirectCommentDate:
                description: >-
                  Date of the most recent indirect comment involving the
                  prospect, ISO 8601.
                type: string
                example: '2025-06-30T14:02:07.456Z'
              prospectProfileUrl:
                type: string
                description: Prospect's LinkedIn profile URL.
                example: https://www.linkedin.com/in/john-doe
              wasConnectionRequestSentViaExtrovert:
                description: >-
                  Whether a LinkedIn connection request has been initiated to
                  the prospect via Extrovert.
                type: boolean
              connectionRequestSentDate:
                description: Date when the connection request was sent, ISO 8601.
                type: string
                example: '2025-06-30T14:02:07.456Z'
              connectionStatus:
                description: >-
                  Current LinkedIn connection status between the campaign owner
                  and the prospect.
                type: string
                enum:
                  - unknown
                  - not_connected
                  - queued
                  - pending
                  - email_required
                  - target_user_not_found
                  - unable_to_connect
                  - connected
                  - error
              connectedDate:
                description: >-
                  Date when the connection with the prospect was established,
                  ISO 8601.
                type: string
                example: '2025-06-30T14:02:07.456Z'
            required:
              - id
              - fullName
              - firstName
              - lastName
              - campaignId
              - campaignName
              - listId
              - listName
              - createdAt
              - postsFetched
              - directComments
              - indirectComments
              - likes
              - prospectProfileUrl
          description: Prospects list with statistics
        message:
          type: string
          description: Success message
          example: Operation completed successfully
      required:
        - status
        - data
        - message
    ClientApiErrorResponseDto:
      type: object
      properties:
        status:
          type: string
          description: Response status
          example: error
          enum:
            - error
        data:
          type: object
          description: Response data
          example: null
        message:
          type: string
          description: Error message
          example: An error occurred while processing the request
      required:
        - status
        - data
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key for authentication

````