Tribe Payments Funds API

The Funds API from Tribe Payments — 1 operation(s) for funds.

Operations 1

POST /v2_funds_confirmations Confirmation of funds.

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/tribe-payments-funds-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

tribe-payments-funds-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bank Webhooks Funds API
  version: 2.0.0
  description: API documentation for bank-related webhooks, including account and payment operations.
tags:
- name: Funds
paths:
  /v2_funds_confirmations:
    post:
      summary: Confirmation of funds.
      description: '"Confirmation of funds" is initiated by the request from TPP. It is a part of the [Get data flow](#appendix--workflow--get-data) between the BANK and TOB.


        It can be used by CBPII to confirm the amount of funds available in the account. Funds can only be confirmed against the currency of the account. This action does not reserve an amount requested in the account but only indicates if the requested amount is present at the time of the API call.

        '
      tags:
      - Funds
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                account:
                  $ref: '#/components/schemas/Account'
                instructed_amount:
                  $ref: '#/components/schemas/Amount'
              required:
              - account
              - instructed_amount
      responses:
        '200':
          description: The successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  funds_available:
                    type: boolean
                    description: Indicates if the requested amount is available in the account.
                required:
                - funds_available
components:
  schemas:
    Amount:
      type: object
      properties:
        amount:
          type: string
          description: The amount value. The decimal separator is a dot.
        currency:
          type: string
          description: The currency in ISO 4217 alpha-3 currency code.
          maxLength: 3
      required:
      - amount
      - currency
    Account:
      type: object
      properties:
        resource_id:
          type: string
          description: The account ID.
        iban:
          type: string
          description: The IBAN of the account.
          maxLength: 34
        bban:
          type: string
          description: The local ASPSP identifier of the account.
          maxLength: 30
        account_number:
          type: integer
          description: The account number. Used to identify the account in the United Kingdom.
          maxLength: 8
        sort_code:
          type: integer
          description: The sort code. Used to identify the account in the United Kingdom.
          maxLength: 6
        currency:
          type: string
          description: The account currency in ISO 4217 alpha-3 currency code.
          maxLength: 3
        name:
          type: string
          description: The account name.
        payment_schemes:
          type: array
          description: The list of possible payment schemes for when the account is used as a debtor during the payment.
          items:
            type: string
            enum:
            - SCT
            - SCTI
            - FPS
            - BACS
            - CHAPS
            - SWIFT