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

# List reports

> Returns a paginated list of the account's previously generated reports for a given report type and date range, each with a pre-signed `downloadUrl`.
Listable report types: `managed_payout_transactions`, `managed_payment_wallet_balances`, `managed_payin_transactions`, and `camt053_managed`. The non-managed `camt053` daily statement is not available through this endpoint; retrieve it with `POST /v1/reports` instead.
Note: the `id` of each listed report is a storage object key, not the deterministic report UUID. It cannot be passed to `GET /v1/reports/{id}` or `GET /v1/reports/{id}/content`; download a listed report using its `downloadUrl`.




## OpenAPI

````yaml openapi/account.yaml get /v1/reports
openapi: 3.0.2
info:
  version: ${version}
  title: Core Functionality
  description: >
    All of Circle's APIs share a common set of core functionality that lets you
    manage your Circle Account in a programmatic way.


    With a Circle Account your business can deposit traditional money from 80+
    countries and seamlessly convert them into "digital currency dollars": USDC.
    You can then use USDC for everyday payments and treasury flows.
servers:
  - url: https://api-sandbox.circle.com
  - url: https://api.circle.com
security: []
tags:
  - name: Balances
    description: Get information on settled and unsettled balances.
  - name: Payouts
    description: Create and get information on 1st party payouts.
  - name: Wires
    description: >-
      Create, get instructions, and get information on 1st party bank accounts
      for wire transfers.
  - name: CUBIX
    description: Create and get information on CUBIX accounts.
  - name: PIX
    description: Create and get information on PIX accounts.
  - name: Transfers
    description: Create and get information on 1st party transfers.
  - name: Addresses
    description: Generate and get information on blockchain addresses.
  - name: Deposits
    description: Get information on 1st party deposits.
  - name: Payments
    description: Create, cancel, refund, and get updates on card payments.
  - name: Settlement Bank Routing
    description: View and manage settlement bank routing preferences for fiat accounts.
  - name: Reporting
    description: >-
      Retrieve transaction and balance reports, including ISO 20022 (CAMT.053)
      statements and managed-payment reports.
paths:
  /v1/reports:
    get:
      tags:
        - Reporting
      summary: List reports
      description: >
        Returns a paginated list of the account's previously generated reports
        for a given report type and date range, each with a pre-signed
        `downloadUrl`.

        Listable report types: `managed_payout_transactions`,
        `managed_payment_wallet_balances`, `managed_payin_transactions`, and
        `camt053_managed`. The non-managed `camt053` daily statement is not
        available through this endpoint; retrieve it with `POST /v1/reports`
        instead.

        Note: the `id` of each listed report is a storage object key, not the
        deterministic report UUID. It cannot be passed to `GET /v1/reports/{id}`
        or `GET /v1/reports/{id}/content`; download a listed report using its
        `downloadUrl`.
      operationId: listReports
      parameters:
        - name: reportType
          description: >-
            Report type to list. The non-managed `camt053` type is not supported
            here.
          in: query
          required: true
          schema:
            type: string
            enum:
              - managed_payout_transactions
              - managed_payment_wallet_balances
              - managed_payin_transactions
              - camt053_managed
            example: managed_payout_transactions
        - name: startDate
          description: >
            Start of the date range to list (inclusive), formatted as
            `YYYY-MM-DD`. Must be in the past and on or before `endDate`.
          in: query
          required: true
          schema:
            type: string
            format: date
            example: '2025-01-01'
        - name: endDate
          description: >
            End of the date range to list (inclusive), formatted as
            `YYYY-MM-DD`. Must be in the past or present and on or after
            `startDate`.
          in: query
          required: true
          schema:
            type: string
            format: date
            example: '2025-01-31'
        - name: timeframe
          description: >
            Filters results to a single aggregation window. When omitted,
            reports of all timeframes are returned.
          in: query
          required: false
          schema:
            type: string
            enum:
              - daily
              - monthly
            example: daily
        - $ref: '#/components/parameters/PageBefore'
        - $ref: '#/components/parameters/PageAfter'
        - $ref: '#/components/parameters/PageSize'
      responses:
        '200':
          description: Successfully retrieved a list of reports.
          headers:
            X-Request-Id:
              $ref: '#/components/headers/XRequestId'
          content:
            application/json:
              schema:
                title: ListReportsResponse
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReportMetadata'
              example:
                data:
                  - id: >-
                      managed_payout_transactions/8c3a2f5e-1d4b-4a9c-bf21-6e0d7c9a1b23/2025-01-15/report.csv
                    reportType: managed_payout_transactions
                    timeframe: daily
                    reportDate: '2025-01-15'
                    downloadUrl: https://s3.amazonaws.com/...
                    expiresAt: '2025-01-15T15:00:00Z'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/NotAuthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '422':
          $ref: '#/components/responses/UnprocessableEntity'
        '500':
          $ref: '#/components/responses/InternalServerError'
      security:
        - bearerAuth: []
components:
  parameters:
    PageBefore:
      name: pageBefore
      description: >
        A collection ID value used for pagination.


        It marks the exclusive end of a page. When provided, the collection
        resource will return the next `n` items before

        the id, with `n` being specified by `pageSize`.


        The items will be returned in the natural order of the collection.


        The resource will return the first page if neither `pageAfter` nor
        `pageBefore` are specified.


        SHOULD NOT be used in conjuction with pageAfter.
      in: query
      required: false
      schema:
        type: string
    PageAfter:
      name: pageAfter
      description: >
        A collection ID value used for pagination.


        It marks the exclusive begin of a page. When provided, the collection
        resource will return the next `n` items after

        the id, with `n` being specified by `pageSize`.


        The items will be returned in the natural order of the collection.


        The resource will return the first page if neither `pageAfter` nor
        `pageBefore` are specified.


        SHOULD NOT be used in conjuction with pageBefore.
      in: query
      required: false
      schema:
        type: string
    PageSize:
      name: pageSize
      description: >
        Limits the number of items to be returned.


        Some collections have a strict upper bound that will disregard this
        value. In case the specified value is higher

        than the allowed limit, the collection limit will be used.


        If avoided, the collection will determine the page size itself.
      in: query
      required: false
      schema:
        type: integer
        minimum: 1
        example: 5
  headers:
    XRequestId:
      description: >-
        Universally unique identifier (UUID v4) for the request. Helpful for
        identifying a request when communicating with Circle support.
      schema:
        type: string
        format: uuid
        example: 2adba88e-9d63-44bc-b975-9b6ae3440dde
  schemas:
    ReportMetadata:
      type: object
      description: >
        Metadata for a single report returned by the list endpoint (`GET
        /v1/reports`).


        This shape differs from the per-report `ReportRecord`: the `id` here is
        the

        storage object key for the file, not the deterministic report UUID, and

        therefore **cannot** be passed to `GET /v1/reports/{id}` or

        `GET /v1/reports/{id}/content`. To download a listed report, use its

        `downloadUrl` directly.
      required:
        - id
        - reportType
        - reportDate
      properties:
        id:
          type: string
          description: >
            Identifier of the report file. This is the storage object key, not
            the

            deterministic report UUID used by the per-report endpoints. It
            cannot be

            used with `GET /v1/reports/{id}`; download the report via
            `downloadUrl`.
          example: >-
            managed_payout_transactions/8c3a2f5e-1d4b-4a9c-bf21-6e0d7c9a1b23/2025-01-15/report.csv
        reportType:
          type: string
          enum:
            - managed_payout_transactions
            - managed_payment_wallet_balances
            - managed_payin_transactions
            - camt053_managed
          description: Report type identifier.
          example: managed_payout_transactions
        timeframe:
          type: string
          enum:
            - daily
            - monthly
          description: Aggregation window the report covers.
          example: daily
        reportDate:
          type: string
          description: |
            Date the report covers. Daily reports are formatted as `YYYY-MM-DD`;
            monthly reports are formatted as `YYYY-MM`.
          example: '2025-01-15'
        downloadUrl:
          type: string
          format: uri
          description: Pre-signed URL to download the report file.
          example: https://s3.amazonaws.com/...
        expiresAt:
          type: string
          format: date-time
          description: Expiration time of `downloadUrl` in ISO 8601 format.
          example: '2025-01-15T15:00:00Z'
  responses:
    BadRequest:
      description: The request cannot be processed due to a client error.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            type: object
            title: BadRequest
            required:
              - code
              - message
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Something went wrong.
            example:
              code: 400
              message: Bad request.
          examples:
            response:
              value:
                code: 400
                message: Bad request.
    NotAuthorized:
      description: >-
        The request has not been applied because it lacks valid authentication
        credentials.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            type: object
            title: NotAuthorized
            required:
              - code
              - message
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Something went wrong.
            example:
              code: 401
              message: Malformed authorization.
          examples:
            response:
              value:
                code: 401
                message: Malformed authorization.
    Forbidden:
      description: >-
        The request provides authentication, but the authenticated user does not
        possess sufficient permissions for accessing this resource.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            type: object
            title: Forbidden
            required:
              - code
              - message
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Something went wrong.
            example:
              code: 3
              message: Forbidden
          examples:
            response:
              value:
                code: 3
                message: Forbidden
    UnprocessableEntity:
      description: >-
        One or more query parameters could not be parsed (such as a malformed
        date or an unknown value).
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            type: object
            title: UnprocessableEntity
            required:
              - code
              - message
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Something went wrong.
            example:
              code: 422
              message: Invalid value for query parameter 'startDate'.
          examples:
            response:
              value:
                code: 422
                message: Invalid value for query parameter 'startDate'.
    InternalServerError:
      description: Unexpected server error.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            type: object
            title: InternalServerError
            required:
              - code
              - message
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Something went wrong.
            example:
              code: 500
              message: Internal server error.
          examples:
            response:
              value:
                code: 500
                message: Internal server error.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````