TabaPay Bank API

This resource represents a Bank.

Operations 1

POST /v1/clients/{ClientID}/banks Query Bank #

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/tabapay-bank-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 email required.

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

OpenAPI Specification

tabapay-bank-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TabaPay APIs 3D Secure Bank API
  description: TabaPay Resource and Service Operations
  version: 1.0.0
  license:
    name: All rights reserved
servers:
- url: https://{FQDN}:{PORT}
  description: TabaPay APIs
  variables:
    FQDN:
      default: FQDN
      description: Contact [TabaPay Support](https://tabapay.zendesk.com/hc/en-us/requests/new) for the Fully Qualified Domain Name you should be using.
    PORT:
      default: PORT
      description: Ensure you have the capability to access the PORT TabaPay specifies in your credentials file.
security:
- bearerAuth: []
tags:
- name: Bank
  description: This resource represents a Bank.
paths:
  /v1/clients/{ClientID}/banks:
    post:
      tags:
      - Bank
      summary: Query Bank
      description: Returns the attributes for the requested Bank.
      operationId: bankQuery
      parameters:
      - $ref: '#/components/parameters/ClientID'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/queryBank'
            examples:
              Query Bank Real-Time Payments:
                value:
                  routingNumber: '011001234'
        required: true
      responses:
        '200':
          description: The Bank's Attributes are returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/queryBankResponse'
              examples:
                Routing Number Enabled:
                  value:
                    SC: 200
                    EC: '0'
                    RTP: true
                    RTPAttributes:
                      TCH: true
                      TCHRequestForPayment: false
                      FED: true
                      FEDRequestForPayment: false
                Routing Number Not Enabled:
                  value:
                    SC: 200
                    EC: '0'
                    RTP: false
        '400':
          description: Bad Request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/queryBankResponse'
              examples:
                Invalid Routing Number:
                  value:
                    SC: 400
                    EC: InternalErrorCode
                    EM: accounts.destinationAccount.bank.routingNumber
components:
  schemas:
    queryBank:
      type: object
      required:
      - routingNumber
      properties:
        routingNumber:
          $ref: '#/components/schemas/routingNumber'
    queryBankResponse:
      type: object
      properties:
        SC:
          $ref: '#/components/schemas/SC'
        EC:
          $ref: '#/components/schemas/EC'
        RTP:
          type: boolean
          description: <<glossary:RTP>>-enabled
          example: true
        RTPAttributes:
          type: object
          description: Additional RTP Attributes of the Routing Number
          properties:
            TCH:
              type: boolean
              description: The routing number enablement for Real Time Payments within The Clearing House (TCH) network
              example: true
            TCHRequestForPayment:
              type: boolean
              description: The routing number enablement for [RfP (Request for Payment](/docs/request-for-payment-via-rtp-by-tch#/) within The Clearing House (TCH) network.
              example: false
            FED:
              type: boolean
              description: The routing number enablement for Real Time Payments within the FedNow network
              example: true
            FEDRequestForPayment:
              type: boolean
              description: The routing number enablement for Request For Payment (RFP) within the FedNow network
              example: false
    routingNumber:
      type: string
      pattern: ^[0-9]{9}$
      description: '[ABA routing transit number](https://en.wikipedia.org/wiki/ABA_routing_transit_number)'
    EC:
      type: string
      description: Internal Error Code. This is used to help TabaPay team members trace an error.
    SC:
      type: integer
      description: '[HTTP Status Code](https://developers.tabapay.com/reference/http-status-codes#/)'
  parameters:
    ClientID:
      name: ClientID
      in: path
      description: 22-character <<glossary:ClientID>>. Ask [TabaPay Support](https://tabapay.zendesk.com/hc/en-us/requests/new) if you need to specify a <<glossary:SubClientID>>.
      required: true
      style: simple
      explode: false
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    custom-header:
      type: apiKey
      name: Authorization
      in: header