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

# Retrieve ACH transfer events

> Retrieve ACH transfer events



## OpenAPI

````yaml get /events/transfers/ach
openapi: 3.0.1
info:
  title: OpenAPI spec for Swift Customer Data Processing and Risk Score
  description: A specification for Swift's customer data processing and risk score APIs
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: http://sandbox.mintlify.com
security:
  - bearerAuth: []
paths:
  /events/transfers/ach:
    get:
      tags:
        - Transfer Activity
      summary: Retrieve ACH transfer events
      description: Retrieve ACH transfer events
      parameters:
        - name: accountId
          in: query
          description: Filter by account ID
          schema:
            type: string
      responses:
        '200':
          description: List of ACH transfer events
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ACHTransferEvent'
components:
  schemas:
    ACHTransferEvent:
      required:
        - accountId
        - amount
        - transferType
        - timestamp
      type: object
      properties:
        accountId:
          description: ID of the account initiating/receiving the transfer
          type: string
        amount:
          description: Transfer amount in cents
          type: integer
          minimum: 0
        transferType:
          description: Type of ACH transfer
          type: string
          enum:
            - credit
            - debit
        timestamp:
          description: When the transfer was initiated
          type: string
          format: date-time
        status:
          description: Current status of the transfer
          type: string
          enum:
            - pending
            - processing
            - completed
            - failed
            - returned
        metadata:
          description: Additional transfer-specific details
          type: object
          additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````