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

# List Payment Requests

> List all payment requests with status and date filtering



## OpenAPI

````yaml get /v1/payment-requests
openapi: 3.1.1
info:
  title: HitPay API
  description: >-
    Accept PayNow, FPX, QRIS, GrabPay, cards, and 40+ payment methods with a
    single API. Production base URL: https://api.hit-pay.com, Sandbox:
    https://api.sandbox.hit-pay.com
  version: '1.0'
servers:
  - url: https://api.hit-pay.com
    description: Production
  - url: https://api.sandbox.hit-pay.com
    description: Sandbox
security: []
paths:
  /v1/payment-requests:
    get:
      summary: Get Payment Requests
      description: Get all payment requests.
      operationId: get-payment-requests
      parameters:
        - name: X-BUSINESS-API-KEY
          in: header
          required: true
          style: simple
          explode: false
          schema:
            type: string
            example: b286daabf9921b5a01a4621f026c111e046f8911feba212996c92159b98427d
        - name: per_page
          in: query
          description: Page size
          schema:
            type: integer
            format: int32
            default: 10
            maximum: 100
        - name: current_page
          in: query
          description: Page number (not `page`)
          schema:
            type: integer
            format: int32
            default: 1
        - name: search
          in: query
          description: Partial match on email, id, or reference_number
          schema:
            type: string
            maxLength: 255
        - name: is_default
          in: query
          description: >-
            When set, returns only default payment links (channel = custom or
            link)
          schema:
            type: boolean
        - name: metadata
          in: query
          description: >-
            Filter by metadata key/value (exact match); only the first key/value
            pair is used
          schema:
            oneOf:
              - type: object
                additionalProperties:
                  type: string
              - type: array
                items:
                  type: string
      responses:
        '200':
          description: '200'
          content: {}
      deprecated: false
      security: []

````