Bakkt Partner Party Funding API

The Partner Party Funding API from Bakkt — 5 operation(s) for partner party funding.

Operations 5

GET /partner/v1/partner/{partnerId}/party/{partnerPartyRef}/wire-instructions Generate inbound wire instructions #
GET /partner/v1/partner/{partnerId}/party/{partnerPartyRef}/fiatAccount/balance Retrieve Fiat Account Balance #
POST /partner/v1/partner/{partnerId}/party/{partnerPartyRef}/bankAccountLinking/ach Add Bank Account - ACH #
POST /partner/v1/partner/{partnerId}/party/{partnerPartyRef}/transfer Deposit or withdraw funds #
POST /partner/v1/partner/{partnerId}/party/{partnerPartyRef}/bankAccountLinking/unlink Unlink fiat Account #

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/bakkt-partner-party-funding-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

bakkt-partner-party-funding-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bakkt Crypto Solutions Partner Party Funding API
  version: '2.0'
  description: The Bakkt Crypto Solutions API is a REST-based API that provides a platform for clients, so their investors can purchase, hold, sell, and transfer digital assets.
  termsOfService: https://bakkt.com/user-agreement
  contact:
    name: Bakkt User Account Agreement
    url: https://bakkt.com/user-agreement
servers:
- url: https://api.bakkt.com
  description: Bakkt API gateway (dedicated per-client, IP-whitelisted; base paths /apex-crypto/api/v2 and /partner/v1)
tags:
- name: Partner Party Funding
paths:
  /partner/v1/partner/{partnerId}/party/{partnerPartyRef}/wire-instructions:
    get:
      tags:
      - Partner Party Funding
      summary: Generate inbound wire instructions
      description: Generate end user specific inbound wire instructions for fiat deposit. Reponse not to be cached. Bank instructions may change over time.
      operationId: generateWireInstructions
      parameters:
      - name: partnerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: partnerPartyRef
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Request Accepted
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/WireInstructionsResponse'
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PublicApiError'
  /partner/v1/partner/{partnerId}/party/{partnerPartyRef}/fiatAccount/balance:
    get:
      tags:
      - Partner Party Funding
      summary: Retrieve Fiat Account Balance
      description: Retrieve the fiat account balance of a consumer
      operationId: getFiatAccountBalance
      parameters:
      - name: partnerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: partnerPartyRef
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GetFiatAccountBalanceResponse'
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PublicApiError'
  /partner/v1/partner/{partnerId}/party/{partnerPartyRef}/bankAccountLinking/ach:
    post:
      tags:
      - Partner Party Funding
      summary: Add Bank Account - ACH
      operationId: linkBankAccountAchAsync
      parameters:
      - name: partnerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: partnerPartyRef
        in: path
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/LinkBankAccountAchRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/LinkBankAccountAchResponse'
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PublicApiError'
  /partner/v1/partner/{partnerId}/party/{partnerPartyRef}/transfer:
    post:
      tags:
      - Partner Party Funding
      summary: Deposit or withdraw funds
      description: Initiate deposit or withdraw on behalf of the consumer on linked fiat account.
      operationId: transferFiatCurrency
      parameters:
      - name: partnerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: partnerPartyRef
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/TransferRequest'
        required: true
      responses:
        '200':
          description: Request Accepted
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PublicApiError'
  /partner/v1/partner/{partnerId}/party/{partnerPartyRef}/bankAccountLinking/unlink:
    post:
      tags:
      - Partner Party Funding
      summary: Unlink fiat Account
      operationId: unlinkBankAccount
      parameters:
      - name: partnerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: partnerPartyRef
        in: path
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        required: true
        schema:
          type: string
      - name: x-tracking-id
        in: header
        required: false
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/UnlinkBankAccountRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/UnlinkBankAccountResponse'
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PublicApiError'
components:
  schemas:
    GetFiatAccountBalanceResponse:
      required:
      - partnerPartyRef
      - currency
      - settledAmount
      - unsettledAmount
      type: object
      properties:
        partnerPartyRef:
          type: string
          description: The Partner's primary key for this Party
          example: b9e930d0-372a-48f0-9c04-fd51c58eafb6
        currency:
          type: string
          description: Currency of the settled and unsettled amounts
          example: USD
        settledAmount:
          type: number
          description: Settled Fiat Account balance
          example: 50.01
        unsettledAmount:
          type: number
          description: Unsettled Fiat Account balance
          example: 100.01
    LinkBankAccountAchRequest:
      required:
      - accountNumber
      - accountType
      - partnerTransactionRef
      - routingNumber
      type: object
      properties:
        accountNumber:
          type: string
        accountType:
          type: string
        partnerTransactionRef:
          maxLength: 255
          minLength: 0
          type: string
        routingNumber:
          type: string
    UnlinkBankAccountResponse:
      type: object
      properties:
        success:
          type: boolean
    PublicApiErrorDetail:
      type: object
      properties:
        description:
          type: string
          description: Human readable error description
          example: Validation Error.
        field:
          type: string
          example: id
        rejectedValue:
          type: object
          example: i-am-not-a-uuid
        type:
          type: string
          example: VALIDATION_ERROR
    LinkBankAccountAchResponse:
      type: object
      properties:
        success:
          type: boolean
    PublicApiError:
      type: object
      properties:
        description:
          type: string
          description: Message from the exception
          example: Parameter passed for field is not meeting its required format.
        detail:
          type: string
          description: Description of the type
          example: validation error
        details:
          type: array
          items:
            $ref: '#/components/schemas/PublicApiErrorDetail'
        type:
          type: string
          example: INVALID_FIELD_VALUE
    TransferRequest:
      type: object
      required:
      - amount
      - currency
      - fiatTransactType
      - idempotencyKey
      - instrumentType
      - partnerTransactionRef
      properties:
        amount:
          type: number
          format: double
        currency:
          type: string
          enum:
          - USD
        fiatTransactType:
          type: string
          enum:
          - DEPOSIT
          - WITHDRAW
        idempotencyKey:
          type: string
        instrumentType:
          type: string
          enum:
          - ACH
          - DEBIT
          - WIRE
        partnerTransactionRef:
          type: string
        wireWithdrawDetails:
          $ref: '#/components/schemas/WireWithdrawDetails'
    UnlinkBankAccountRequest:
      required:
      - instrumentType
      - partnerTransactionRef
      type: object
      properties:
        instrumentType:
          type: string
          enum:
          - ACH
          - DEBIT
          - TPJ
          - WIRE
        partnerTransactionRef:
          maxLength: 255
          minLength: 0
          type: string
    WireInstructionsResponse:
      type: object
      required:
      - wireReferenceNumber
      - wireRoutingNumber
      - wireAccountNumber
      - wireSwiftCode
      - wireBankName
      - wireBankAddress
      - wireBeneficiaryName
      - wireBeneficiaryAddress
      properties:
        wireReferenceNumber:
          type: string
        wireRoutingNumber:
          type: string
        wireAccountNumber:
          type: string
        wireSwiftCode:
          type: string
        wireBankName:
          type: string
        wireBankAddress:
          type: string
        wireBeneficiaryName:
          type: string
        wireBeneficiaryAddress:
          type: string
    WireWithdrawDetails:
      type: object
      properties:
        wireRoutingNumber:
          type: string
        wireAccountNumber:
          type: string
        wireBankName:
          type: string
        wireBankAddress:
          type: string
        wireSwiftCode:
          type: string