TD Bank · Capability

TD Bank Transactions API — Transactions

TD Bank Transactions — FDX v6.2 posted/pending transactions for a consented account, with date filtering and image retrieval. 3 operations.

TD Bank Transactions API — Transactions is a Naftiko capability published by TD Bank, one of 16 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include TD Bank, Transactions, FDX, and Open Banking.

Run with Naftiko TD BankTransactionsFDXOpen Banking

Capability Spec

transactions-transactions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: TD Bank Transactions API — Transactions
  description: 'TD Bank Transactions — FDX v6.2 posted/pending transactions for a consented account, with date filtering and image retrieval. 3 operations.'
  tags:
  - TD Bank
  - Transactions
  - FDX
  - Open Banking
  created: '2026-05-23'
  modified: '2026-05-23'
binds:
- namespace: env
  keys:
    TD_BANK_API_KEY: TD_BANK_API_KEY
capability:
  consumes:
  - type: http
    namespace: transactions-transactions
    baseUri: https://api.openbanking.amcb.developer.td.com/fdx/v6
    description: TD Transactions API.
    resources:
    - name: accounts-accountId-transactions
      path: /accounts/{accountId}/transactions
      operations:
      - name: listtransactions
        method: GET
        description: List Transactions
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: startTime
          in: query
          type: string
        - name: endTime
          in: query
          type: string
    - name: accounts-accountId-transactions-transactionId
      path: /accounts/{accountId}/transactions/{transactionId}
      operations:
      - name: gettransaction
        method: GET
        description: Get Transaction
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: transactionId
          in: path
          type: string
          required: true
    - name: accounts-accountId-transactions-transactionId-image
      path: /accounts/{accountId}/transactions/{transactionId}/image
      operations:
      - name: gettransactionimage
        method: GET
        description: Get Transaction Image
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: transactionId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.TD_BANK_API_KEY}}'
  exposes:
  - type: rest
    namespace: transactions-rest
    port: 8080
    description: REST adapter for TD Transactions API.
    resources:
    - path: /v1/transactions
      name: transactions