Jack Henry & Associates Transactions API

Posted and pending transactions per account.

Operations 3

GET /a/consumer/api/v0/users/{userId}/accounts/{accountId}/transactions List Account Transactions #
GET /a/consumer/api/v0/users/{userId}/accounts/{accountId}/transactions/{transactionId} Get Transaction Details #
GET /jxchange/v1/accounts/{accountNumber}/transactions List Account Transactions #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/jack-henry-transactions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

jack-henry-transactions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jack Henry Transactions API
  version: '1.0'
  description: 'Operations tagged Transactions across 2 of this provider''s published API definitions: banno-consumer-api-openapi.yml, jxchange-rest-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.banno.com
  description: Banno production
- url: https://jxchange.jackhenry.com
  description: jXchange production gateway
tags:
- name: Transactions
  description: Posted and pending transactions per account.
paths:
  /a/consumer/api/v0/users/{userId}/accounts/{accountId}/transactions:
    get:
      summary: List Account Transactions
      operationId: listTransactions
      tags:
      - Transactions
      security:
      - openIdConnect:
        - https://api.banno.com/consumer/auth/transactions.readonly
      parameters:
      - $ref: '#/components/parameters/UserId'
      - $ref: '#/components/parameters/AccountId'
      - name: startDate
        in: query
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        schema:
          type: string
          format: date
      - name: cursor
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Paged list of transactions.
          content:
            application/json:
              schema:
                type: object
                properties:
                  transactions:
                    type: array
                    items:
                      $ref: '#/components/schemas/Transaction'
                  nextCursor:
                    type:
                    - string
                    - 'null'
    servers:
    - url: https://api.banno.com
      description: Banno production
  /a/consumer/api/v0/users/{userId}/accounts/{accountId}/transactions/{transactionId}:
    get:
      summary: Get Transaction Details
      operationId: getTransaction
      tags:
      - Transactions
      security:
      - openIdConnect:
        - https://api.banno.com/consumer/auth/transactions.detail.readonly
      parameters:
      - $ref: '#/components/parameters/UserId'
      - $ref: '#/components/parameters/AccountId'
      - name: transactionId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Transaction detail. Returns a user's account's transaction in greater detail.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Transaction'
    servers:
    - url: https://api.banno.com
      description: Banno production
  /jxchange/v1/accounts/{accountNumber}/transactions:
    get:
      summary: List Account Transactions
      operationId: listAccountTransactions
      tags:
      - Transactions
      parameters:
      - name: accountNumber
        in: path
        required: true
        schema:
          type: string
      - name: startDate
        in: query
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Transactions for the account.
          content:
            application/json:
              schema:
                type: object
                properties:
                  transactions:
                    type: array
                    items:
                      $ref: '#/components/schemas/CoreTransaction'
      security:
      - bearerAuth: []
    servers:
    - url: https://jxchange.jackhenry.com
      description: jXchange production gateway
components:
  parameters:
    AccountId:
      name: accountId
      in: path
      required: true
      description: ID of the desired account (UUID format).
      schema:
        type: string
        format: uuid
    UserId:
      name: userId
      in: path
      required: true
      description: ID of the desired user (UUID format).
      schema:
        type: string
        format: uuid
  schemas:
    Transaction:
      type: object
      properties:
        id:
          type: string
          format: uuid
        amount:
          type: number
          format: double
        date:
          type: string
          format: date
        postedDate:
          type: string
          format: date
        type:
          type: string
          enum:
          - Debit
          - Credit
          - Fee
          - Interest
          - Transfer
        status:
          type: string
          enum:
          - Posted
          - Pending
        description:
          type: string
        memo:
          type: string
        merchant:
          type: object
          properties:
            name:
              type: string
            category:
              type: string
            logo:
              type: string
              format: uri
        runningBalance:
          type: number
          format: double
        tags:
          type: array
          items:
            type: string
        pending:
          type: boolean
        notes:
          type: string
        enrichments:
          type: object
          additionalProperties: true
    CoreTransaction:
      type: object
      properties:
        transactionId:
          type: string
        postDate:
          type: string
          format: date
        effectiveDate:
          type: string
          format: date
        amount:
          type: number
          format: double
        type:
          type: string
          enum:
          - Debit
          - Credit
          - Fee
          - Interest
          - Adjustment
        description:
          type: string
        memo:
          type: string
        runningBalance:
          type: number
          format: double
        sourceCode:
          type: string
  securitySchemes:
    openIdConnect:
      type: openIdConnect
      openIdConnectUrl: https://api.banno.com/a/oidc/.well-known/openid-configuration
    bearerAuth:
      type: http
      scheme: bearer
x-refined-from:
- banno-consumer-api-openapi.yml
- jxchange-rest-openapi.yml