Jack Henry & Associates Customers API

Customer (CIF) records.

Operations 2

GET /jxchange/v1/customers Search Customers #
GET /jxchange/v1/customers/{customerId} Get Customer #

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-customers-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-customers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: jXchange REST Customers 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: Customers
  description: Customer (CIF) records.
paths:
  /jxchange/v1/customers:
    get:
      summary: Search Customers
      operationId: searchCustomers
      tags:
      - Customers
      parameters:
      - name: ssn
        in: query
        schema:
          type: string
      - name: lastName
        in: query
        schema:
          type: string
      - name: cursor
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Customer matches.
          content:
            application/json:
              schema:
                type: object
                properties:
                  customers:
                    type: array
                    items:
                      $ref: '#/components/schemas/Customer'
                  nextCursor:
                    type:
                    - string
                    - 'null'
  /jxchange/v1/customers/{customerId}:
    get:
      summary: Get Customer
      operationId: getCustomer
      tags:
      - Customers
      parameters:
      - name: customerId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Customer record.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Customer'
components:
  schemas:
    Customer:
      type: object
      properties:
        customerId:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        ssnLast4:
          type: string
        dateOfBirth:
          type: string
          format: date
        primaryAddress:
          type: object
          properties:
            line1:
              type: string
            line2:
              type: string
            city:
              type: string
            state:
              type: string
            postalCode:
              type: string
        primaryPhone:
          type: string
        primaryEmail:
          type: string
          format: email
        relationshipOpenDate:
          type: string
          format: date
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer