Fintecture · Capability

Fintecture AIS API — Transactions

Fintecture AIS API — Transactions. 1 operation. Lead operation: Get Account Transactions.

Fintecture AIS API — Transactions is a Naftiko capability published by Fintecture, one of 21 capabilities the APIs.io network indexes for this provider. It bundles 1 operation across the GET method rooted at /v1/ais/v1/customer/{…}/account/{…}/transactions.

The capability includes 1 read-only operation. Lead operation: Get Account Transactions. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Fintecture, AIS, Transactions, and Open Banking.

Run with Naftiko FintectureAISTransactionsOpen Banking

What You Can Do

GET
Getaisv1customeraccounttransactions
/v1/ais/v1/customer/{customer_id}/account/{account_id}/transactions

MCP Tools

fintecture-get-account-transactions

Get Account Transactions

read-only idempotent

Capability Spec

ais-transactions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fintecture AIS API — Transactions
  description: 'Fintecture AIS API — Transactions. 1 operation. Lead operation: Get Account Transactions.'
  tags: [Fintecture, AIS, Transactions, Open Banking]
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
  - namespace: env
    keys:
      FINTECTURE_AIS_TOKEN: FINTECTURE_AIS_TOKEN
capability:
  consumes:
    - type: http
      namespace: ais-transactions
      baseUri: https://api.fintecture.com
      description: Retrieve account transaction history.
      resources:
        - name: ais-v1-transactions
          path: /ais/v1/customer/{customer_id}/account/{account_id}/transactions
          operations:
            - name: getaisv1customeraccounttransactions
              method: GET
              description: Get Account Transactions
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: customer_id
                  in: path
                  required: true
                - name: account_id
                  in: path
                  required: true
                - name: from
                  in: query
                - name: to
                  in: query
      authentication:
        type: bearer
        value: '{{env.FINTECTURE_AIS_TOKEN}}'
        placement: header
  exposes:
    - type: rest
      namespace: ais-transactions-rest
      port: 8080
      resources:
        - path: /v1/ais/v1/customer/{customer_id}/account/{account_id}/transactions
          name: ais-v1-transactions
          operations:
            - method: GET
              name: getaisv1customeraccounttransactions
              call: ais-transactions.getaisv1customeraccounttransactions
              with:
                customer_id: rest.customer_id
                account_id: rest.account_id
    - type: mcp
      namespace: ais-transactions-mcp
      port: 9090
      transport: http
      tools:
        - name: fintecture-get-account-transactions
          description: Get Account Transactions
          hints: { readOnly: true, destructive: false, idempotent: true }
          call: ais-transactions.getaisv1customeraccounttransactions
          with:
            customer_id: tools.customer_id
            account_id: tools.account_id