DriveWealth Commission Schedules API

The Commission Schedules API from DriveWealth — 1 operation(s) for commission schedules.

Operations 1

GET /accounts/{accountID}/commissions List Commission Schedules

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-commission-schedules-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-commission-schedules-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DriveWealth Accounts Commission Schedules 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: Commission Schedules
  x-displayName: Commission Schedules
paths:
  /accounts/{accountID}/commissions:
    get:
      tags:
      - Commission Schedules
      parameters:
      - in: path
        name: accountID
        schema:
          $ref: '#/components/schemas/accountID'
        required: true
      summary: List Commission Schedules
      description: Retrieves a list of Commissions Schedules by accountID.
      responses:
        '200':
          description: Retrieving a list of Commissions Schedules was Successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommissionsRes'
      security:
      - bearerAuth: []
        dwAppKey: []
      - sessionToken: []
        dwAppKey: []
components:
  schemas:
    assignmentCriteria:
      type: object
      properties:
        wplID:
          $ref: '#/components/schemas/wlpID'
        countries:
          type: string
          example: USA
          description: Clients from this country will be assigned this commission.
        defaultStatus:
          type: boolean
          example: true
          description: The default commission to be applied if no other criteria matches.
        accountMgmtType:
          type: string
          example: null
          description: NEEDS DESCRIPTION
    commissionID:
      type: string
      example: b3e985dd-9679-63dc-5dd5-9bd7982efecd
      description: The unique identifier associated with a specific commission related to the account.
    accountID:
      type: string
      example: cc07f91b-7ee1-4868-b8fc-823c70a1b932.1407775317759
      description: The user's unique account identifier.
    ratesObject:
      type: object
      properties:
        rate:
          type: number
          example: 1.49
          description: Commission rate in USD.
        passThroughFees:
          type: boolean
          example: true
          description: If true, SEC and TAF fees are passed through to the client.
        shareAmountRounding:
          type: string
          example: CEIL
          description: Share amount rounding method. Options:`FLOOR` - Share quantity rounded down `CEIL` - Share quantity rounded up `NEAREST` - Share quantity rounded to nearest integer.
          enum:
          - FLOOR
          - CEIL
          - NEAREST
        minimumRate:
          type: number
          example: 1.49
          description: Minimum commission rate.
    wlpID:
      type: string
      example: TTC
      description: The wlpID is a deep backoffice ID that identifies each partner from each other.
    CommissionsRes:
      type: array
      items:
        $ref: '#/components/schemas/CommissionObject'
    CommissionObject:
      type: object
      properties:
        active:
          type: boolean
          example: true
          description: Commission group status.
        commissionID:
          $ref: '#/components/schemas/commissionID'
        description:
          type: string
          example: Free
          description: A short description about the commission.
        assignmentCriteria:
          $ref: '#/components/schemas/assignmentCriteria'
        rates:
          type: object
          description: This object contains the details of the commission rates.
          properties:
            fractional:
              type: object
              description: Object provides commission rates on order quantities between 0.0001 and 0.9999 (aka fractional shares).
              properties:
                schema:
                  $ref: '#/components/schemas/ratesObject'
            default:
              type: object
              description: Object provided commission rates on full share order quantities.
              properties:
                schema:
                  $ref: '#/components/schemas/ratesObject'
  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