DriveWealth Linked Bank Accounts API

The Linked Bank Accounts API from DriveWealth — 1 operation(s) for linked bank accounts.

Operations 1

GET /users/{userID}/bank-accounts List User Linked Bank Accounts

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/drivewealth-linked-bank-accounts-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

drivewealth-linked-bank-accounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DriveWealth Accounts Linked Bank Accounts API
  version: '1.0'
servers:
- url: https://bo-api.drivewealth.io/back-office
  description: Sandbox server (Uses test data)
- url: https://bo-api.drivewealth.net/back-office
  description: Production Server (Uses LIVE data)
tags:
- name: Linked Bank Accounts
  x-displayName: Linked Bank Accounts
paths:
  /users/{userID}/bank-accounts:
    get:
      tags:
      - Linked Bank Accounts
      summary: List User Linked Bank Accounts
      description: Retrieves a list of User Linked Bank Accounts by userID.
      parameters:
      - in: path
        name: userID
        schema:
          type: string
        required: true
        example: cc07f91b-7ee1-4868-b8fc-823c70a1b932
        description: Unique ID of the User to fetch their stored bank accounts.
      responses:
        '200':
          description: Retrieving a list of User Linked Bank Accounts was Successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BankAccountsArray'
      security:
      - bearerAuth: []
        dwAppKey: []
      - sessionToken: []
        dwAppKey: []
components:
  schemas:
    created:
      type: string
      example: '2022-12-11T22:28:21.810Z'
      description: ''
    bankAccountID:
      type: string
      example: bank_a4656e60-321e-425b-aa0d-a2e75c38885f
      description: The unique DriveWealth identifier that identifies each linked bank account.
    BankAccountsArray:
      type: array
      description: A list of all the User's linked bank accounts.
      items:
        oneOf:
        - $ref: '#/components/schemas/BankAccount'
    updated:
      type: string
      example: '2022-12-11T22:28:21.810Z'
      description: ''
    bankRoutingNumber:
      type: string
      example: '110000000'
      description: The routing number of the user's external bank.
    bankAccountStatus:
      type: string
      example: ACTIVE
      description: The current status of the user's external linked bank account.
      enum:
      - ACTIVE
      - DELETED
      - DISABLED
    bankAccountNumberLastFour:
      type: string
      example: '****3174'
      description: The last four digits of the user's external bank account number.
    bankAccountNickName:
      type: string
      example: PREFERRED CHECKING
      description: The linked bank account nickname defined by the user.
    BankAccount:
      type: object
      properties:
        id:
          $ref: '#/components/schemas/bankAccountID'
        bankAccountDetails:
          type: object
          properties:
            bankAccountNickName:
              $ref: '#/components/schemas/bankAccountNickName'
            bankAccountNumber:
              $ref: '#/components/schemas/bankAccountNumberLastFour'
            bankRoutingNumber:
              $ref: '#/components/schemas/bankRoutingNumber'
        default:
          type: string
          example: true
          description: True, if this is the default bank account set by the customer.
        status:
          $ref: '#/components/schemas/bankAccountStatus'
        created:
          $ref: '#/components/schemas/created'
          description: The date and time the User's bank account was linked.
        updated:
          $ref: '#/components/schemas/updated'
          description: The date and time the User's bank account was updated.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    dwAppKey:
      type: apiKey
      in: header
      name: dw-client-app-key
    sessionToken:
      type: apiKey
      in: header
      name: dw-auth-token