> ## Documentation Index
> Fetch the complete documentation index at: https://yn-c9bb3266.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Reports

> Returns a list of generated reports with their current status.



## OpenAPI

````yaml GET /v1/reports
openapi: 3.1.0
info:
  title: Yuno Payments API
  description: >-
    Yuno payment orchestration platform — unified REST API for payments,
    checkout sessions, customers, payment methods, subscriptions, payouts,
    marketplace transfers, and banking connectivity across Latin America.
  version: 1.0.0
  contact:
    name: Yuno Support
    email: support@y.uno
    url: https://docs.y.uno
  license:
    name: Proprietary
    url: https://y.uno
servers:
  - url: https://api-sandbox.y.uno
    description: Sandbox
  - url: https://api.y.uno
    description: Production
security:
  - publicApiKey: []
    privateSecretKey: []
paths:
  /v1/reports:
    get:
      tags:
        - Reports
      summary: List reports
      description: Returns a list of generated reports with their current status.
      operationId: listReports
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 20
            maximum: 100
          description: Maximum number of results to return
        - name: starting_after
          in: query
          schema:
            type: string
          description: >-
            Cursor for forward pagination. Pass the ID of the last item from the
            previous page.
        - name: status
          in: query
          description: Filter by report status
          schema:
            type: string
            enum:
              - PROCESSING
              - COMPLETED
              - FAILED
        - name: ending_before
          in: query
          schema:
            type: string
          description: >-
            Cursor for backward pagination. Pass the ID of the first item from
            the previous page.
      responses:
        '200':
          description: List of reports
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Report'
components:
  schemas:
    Report:
      type: object
      properties:
        id:
          type: string
          format: uuid
          example: a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d
        status:
          type: string
          enum:
            - PROCESSING
            - COMPLETED
            - FAILED
          description: Report generation status
          example: PROCESSING
        date_range:
          type: object
          properties:
            from:
              type: string
              format: date-time
              example: '2026-02-01T00:00:00.000Z'
            to:
              type: string
              format: date-time
              example: '2026-02-28T23:59:59.999Z'
        download_url:
          type: string
          format: uri
          description: URL to download the completed report
          example: https://reports.y.uno/download/a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d
        created_at:
          type: string
          format: date-time
          example: '2026-03-01T12:00:00.000Z'
      example:
        id: a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d
        status: COMPLETED
        date_range:
          from: '2026-02-01T00:00:00.000Z'
          to: '2026-02-28T23:59:59.999Z'
        download_url: https://reports.y.uno/download/a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d
        created_at: '2026-03-01T12:00:00.000Z'
  securitySchemes:
    publicApiKey:
      type: apiKey
      in: header
      name: public-api-key
      description: Your public API key from the Yuno Dashboard
    privateSecretKey:
      type: apiKey
      in: header
      name: private-secret-key
      description: Your private secret key (server-side only)

````