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

# List transactions

> The categorized transaction list for a report, with query filters. Filters combine with AND.



## OpenAPI

````yaml /openapi.json get /v1/reports/{id}/transactions
openapi: 3.1.0
info:
  title: Swippee API
  version: 1.0.0
  description: >-
    Convert Nepali bank statement PDFs into structured financial data, derive
    lending products from a parse, and read Nepal's public-sector financial
    datasets — over one REST API.
servers:
  - url: https://api.swippee.com
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/reports/{id}/transactions:
    get:
      tags:
        - Reports
      summary: List transactions
      description: >-
        The categorized transaction list for a report, with query filters.
        Filters combine with AND.
      operationId: getReportTransactions
      parameters:
        - $ref: '#/components/parameters/ReportId'
        - name: category
          in: query
          schema:
            type: string
          description: Coarse class, e.g. salary, merchant_payment, transfer.
        - name: merchant_category
          in: query
          schema:
            type: string
          description: Spend sub-category, e.g. dining, groceries, fuel.
        - name: direction
          in: query
          schema:
            type: string
            enum:
              - credit
              - debit
        - name: since
          in: query
          schema:
            type: string
            format: date
        - name: until
          in: query
          schema:
            type: string
            format: date
        - name: limit
          in: query
          schema:
            type: integer
            default: 500
            maximum: 1000
      responses:
        '200':
          description: Filtered transactions
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Transaction'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  parameters:
    ReportId:
      name: id
      in: path
      required: true
      schema:
        type: string
      example: cl_abc123
  schemas:
    Transaction:
      type: object
      description: >-
        A transaction as returned by reports. `amount` is signed: POSITIVE =
        money out (debit), NEGATIVE = money in (credit).
      properties:
        transaction_id:
          type: string
          example: txn_0001
        date:
          type: string
          format: date
        name:
          type: string
          description: Raw narration as printed on the statement.
        amount:
          type: number
          description: 'Signed: positive = money out, negative = money in.'
          example: 2480
        iso_currency_code:
          type: string
          example: NPR
        balance:
          type:
            - number
            - 'null'
        merchant_name:
          type:
            - string
            - 'null'
          example: Example Store
        payment_terminal_id:
          type:
            - string
            - 'null'
          example: '2222000000000000'
        mcc:
          type:
            - string
            - 'null'
          example: '5411'
        personal_finance_category:
          type: object
          properties:
            primary:
              type: string
              example: GENERAL_MERCHANDISE
            detailed:
              type: string
              example: GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE
            confidence_level:
              type: string
              enum:
                - VERY_HIGH
                - HIGH
                - MEDIUM
                - LOW
                - UNKNOWN
        counterparties:
          type: array
          items:
            type: object
            properties:
              type:
                type: string
                example: merchant
              name:
                type:
                  - string
                  - 'null'
              confidence_level:
                type: string
        payment_channel:
          type:
            - string
            - 'null'
          description: Not classified for parsed statements — null.
        pending:
          type: boolean
          example: false
    Error:
      type: object
      description: >-
        Flat, industry-standard error envelope. Branch on error_code, not the
        HTTP status.
      properties:
        error_type:
          type: string
          example: AUTHENTICATION_ERROR
        error_code:
          type: string
          example: INVALID_API_KEY
        error_message:
          type: string
          example: Unknown API key.
        display_message:
          type: string
          nullable: true
          example: null
        request_id:
          type: string
          example: req_8f3c9b2e4a1d4f7c9e0b1a2c3d4e5f60
        documentation_url:
          type: string
          example: https://docs.swippee.com/concepts/errors#invalid_api_key
        suggested_action:
          type: string
          example: Check your API key in the Authorization header.
  responses:
    Unauthorized:
      description: Authentication failed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your API key from the dashboard, sent as `Authorization: Bearer
        swippee_sk_live_...`.

````