Jack Henry & Associates General Ledger API

GL account inquiry.

Operations 1

GET /jxchange/v1/general-ledger/{glAccountNumber} Get GL Account #

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-general-ledger-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-general-ledger-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: jXchange REST General Ledger API
  description: 'jXchange is Jack Henry''s information-translation surface that brokers

    requests between third-party applications and the SilverLake or

    CIF 20/20 community-bank cores. The REST variant exposes deposits,

    loans, customers, accounts, transactions, and general-ledger domains.

    A SOAP variant is also published at jackhenry.dev/jxchange-soap/.

    '
  version: '2024'
servers:
- url: https://jxchange.jackhenry.com
  description: jXchange production gateway
security:
- bearerAuth: []
tags:
- name: General Ledger
  description: GL account inquiry.
paths:
  /jxchange/v1/general-ledger/{glAccountNumber}:
    get:
      summary: Get GL Account
      operationId: getGlAccount
      tags:
      - General Ledger
      parameters:
      - name: glAccountNumber
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: General-ledger account.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GLAccount'
components:
  schemas:
    GLAccount:
      type: object
      properties:
        glAccountNumber:
          type: string
        name:
          type: string
        balance:
          type: number
          format: double
        accountClass:
          type: string
          enum:
          - Asset
          - Liability
          - Equity
          - Income
          - Expense
        branch:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer