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

> Retrieve aggregated payout statistics for a project, including total paid, pending, and failed payment counts.

# Retrieve payout counts



## OpenAPI

````yaml get /v1/projects/{projectId}/screener-responses/payouts
openapi: 3.0.0
info:
  title: Partner API
  description: Public API for partner integrations
  version: '1.0'
  contact: {}
servers:
  - url: https://api-staging.respondent.io
security: []
tags: []
paths:
  /v1/projects/{projectId}/screener-responses/payouts:
    get:
      tags:
        - screener-responses
      summary: Retrieve payout counts
      description: >-
        Returns the payout counts for participants which have been paid for a
        project.
      operationId: ScreenerResponsesController_getPayouts
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
        - name: x-api-secret
          in: header
          required: true
          schema:
            type: string
        - name: projectId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ParticipantPayoutSummaryDto'
components:
  schemas:
    ParticipantPayoutSummaryDto:
      type: object
      properties:
        userId:
          type: string
        profileId:
          type: string
        screenerResponseId:
          type: string
        numberOfPayouts:
          type: number
        payouts:
          type: array
          items:
            $ref: '#/components/schemas/PayoutSummaryDto'
      required:
        - userId
        - profileId
        - screenerResponseId
        - numberOfPayouts
        - payouts
    PayoutSummaryDto:
      type: object
      properties:
        incentive:
          type: number
          description: In cents. USD.
        tip:
          type: number
          description: In cents. USD.
        totalIncentive:
          type: number
          description: Tip + Incentive
        createdAt:
          type: string
      required:
        - incentive
        - tip
        - totalIncentive
        - createdAt

````