Sandbox Banking Adapters API

Core banking and fintech adapter management.

Operations 1

GET /adapters List Adapters #

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/sandbox-banking-adapters-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

sandbox-banking-adapters-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sandbox Banking Glyue Integration Gateway Adapters API
  description: The Glyue Integration Gateway API provides programmatic access to the Sandbox Banking (nCino Integration Gateway) platform for building, managing, and monitoring banking integrations. The API supports creating and executing integration workflows, managing service request adapters, configuring field mappings, value mappings, validation rules, and accessing run history audit logs. Designed for financial institutions connecting core banking systems (Fiserv, Jack Henry, FIS) with fintech applications and loan origination systems.
  version: 1.0.0
  contact:
    name: Sandbox Banking Support
    url: https://glyue.docs.sandboxbanking.com/
  license:
    name: Proprietary
servers:
- url: https://{tenant}.sandboxbanking.com/api
  description: Glyue tenant API endpoint
  variables:
    tenant:
      default: your-institution
      description: Your institution's Glyue tenant subdomain
security:
- TokenAuth: []
tags:
- name: Adapters
  description: Core banking and fintech adapter management.
paths:
  /adapters:
    get:
      operationId: listAdapters
      summary: List Adapters
      description: Returns all banking system and fintech adapters available in the Glyue platform including core banking adapters (Fiserv, Jack Henry, FIS) and fintech connectors (Salesforce, nCino, Encompass).
      tags:
      - Adapters
      responses:
        '200':
          description: List of available adapters.
          content:
            application/json:
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/Adapter'
        '401':
          description: Unauthorized.
components:
  schemas:
    Adapter:
      type: object
      description: A banking system or fintech adapter available in Glyue.
      properties:
        id:
          type: string
          description: Adapter identifier.
        name:
          type: string
          description: Adapter display name (e.g., Fiserv Signature, Jack Henry Symitar).
        adapterType:
          type: string
          description: Adapter category.
          enum:
          - core_banking
          - loan_origination
          - crm
          - kyc_aml
          - document_management
          - payment
          - data_warehouse
        vendor:
          type: string
          description: Vendor or product name.
        operations:
          type: array
          description: Available operations for this adapter.
          items:
            type: string
        version:
          type: string
          description: Adapter version.
  securitySchemes:
    TokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Token-based authentication. Include your API token as: Authorization: Token <your-token>'