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

# Get Payment Request Statistics

> Retrieve summary statistics for payment requests, including the total gross amount, the number of completed transactions, and the number of pending transactions. This endpoint provides an overview of your payment requests, helping you monitor transaction performance at a glance.




## OpenAPI

````yaml /api/openapi/v1-reference.yaml get /v1/payment_requests/count
openapi: 3.0.3
info:
  title: Payment APIs (AUD only)
  description: >-
    ## Introduction

    The Payment API Solution (AUD) offers developers a comprehensive suite of
    API services to build innovative AUD payment solutions efficiently. These
    APIs enable seamless transactions using various payment methods and
    functionalities, ensuring a robust, reliable, and scalable payment
    infrastructure tailored for the Australian market.

    ### Key Features

    - **Payment Methods**:
      - **Payment Link**: Supports payments via card and PayID.
      - **PayID**: Provides instant payments using a unique identifier.
      - **PayTo**: Enables scheduled or recurring payments.
      - **BSB/Account Number**: Allows direct bank transfers.
      - **Payout**: Manage payouts to designated accounts.

    - **Additional Functionalities**:
      - **Balance Management**: Real-time balance inquiries and updates.
      - **Reporting Services**: Generate detailed transaction and payment reports.

    This documentation provides detailed guidance for integrating these
    capabilities into your application.
  termsOfService: https://helloclever.co/terms
  contact:
    email: support@helloclever.co
  version: 1.0.11
servers:
  - url: https://api.cleverhub.co/api
    description: Sandbox Environment
  - url: https://api-merchant.helloclever.co/api
    description: Production Environment
security: []
paths:
  /v1/payment_requests/count:
    get:
      tags:
        - AUD PayID
      summary: Get Payment Request Statistics
      description: >
        Retrieve summary statistics for payment requests, including the total
        gross amount, the number of completed transactions, and the number of
        pending transactions. This endpoint provides an overview of your payment
        requests, helping you monitor transaction performance at a glance.
      operationId: getPaymentRequestStatistics
      responses:
        '200':
          description: Payment request statistics retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  gross:
                    type: number
                    description: The total gross amount of all transactions.
                    example: 1100
                  transactions_count:
                    type: integer
                    description: The total number of transactions recorded.
                    example: 10
                  pending_count:
                    type: integer
                    description: The number of transactions currently pending.
                    example: 5
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
      security:
        - app-id: []
          secret-key: []
components:
  securitySchemes:
    app-id:
      type: apiKey
      in: header
      name: app-id
      description: |
        A unique identifier assigned to each application.
    secret-key:
      type: apiKey
      in: header
      name: secret-key
      description: |
        A secure token associated with the `app-id`.

````

## Related topics

- [Accept Instant Payments with AUD PayID](/developer-reference/api-use-cases/accept-instant-payments-with-aud-payid.md)
- [Get Payment Request Status](/api/aud-bsbaccount-number/get-payment-request-status.md)
- [Get Payment Request List](/api/aud-payid/get-payment-request-list.md)
