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

# Get Bank Account

> Get information about Bank Account object



## OpenAPI

````yaml /api_reference/nft.yaml get /payment-method/ach
openapi: 3.1.0
info:
  version: '1.0'
  title: NFT API
  summary: API to enable direct NFT purchasing
  description: Reference for Sardine Crypto API
servers:
  - url: https://api.sandbox.sardine.ai/v1
    description: Sandbox
  - url: https://api.sardine.ai/v1
    description: Prod Server
security:
  - {}
paths:
  /payment-method/ach:
    get:
      tags:
        - Payment Method
      summary: Get Bank Account
      description: Get information about Bank Account object
      operationId: get-payment_method-ach
      parameters:
        - name: bank_account_id
          in: query
          description: Bank Account ID.
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Bank-Account'
      security: []
      servers:
        - url: https://api.sandbox.sardine.ai/v1
          description: Sandbox
        - url: https://api.sardine.ai/v1
          description: Prod Server
components:
  schemas:
    Bank-Account:
      type: object
      title: Bank Account
      properties:
        bankAccountId:
          type: string
          description: Unique identifier for the given user.
          format: uuid
        accountNumber:
          type: string
          description: |
            Bank account number
          examples:
            - '98322271627'
        name:
          type: string
          description: User set name of account
          format: email
        officialName:
          type: string
          description: Bank designated name of account
          format: date
          examples:
            - '1997-10-31'
        routingNumber:
          type: string
          description: The date that the user was created.
          format: date
        subtype:
          type: string
          description: Subtype of account
        type:
          type: string
          description: Type of account, checking, saving etc
        wireRoutingNUmber:
          type: string
          description: Routing number for bank account
        institutionName:
          type: string
          description: Name of the bank at which the account is open
        status:
          type: string
          enum:
            - connected
            - disconnected
      examples:
        - bankAccountId: 5b26b598-a880-4e32-8c41-126aa0206857
          accountNumber: '98322271627'
          name: John Doe
          officialName: JP Morgan Chase Checking account
          routingNumber: '322271627'
          subtype: checking
          type: string
          wireRoutingNUmber: '32222171627'
          institutionName: JP Morgan Chase
          status: connected
      x-internal: true
      x-stoplight:
        id: nmynlsto9w57k

````