broadridge Positions API

Portfolio positions and holdings

Operations 1

GET /wealth/v1/accounts/{accountNumber}/positions Get account positions #

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/broadridge-positions-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

broadridge-positions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Broadridge Wealth Management Accounts Positions API
  description: The Broadridge Wealth Management API provides access to account activity, balances, positions, and transaction data for wealth management platforms. REST APIs enable broker-dealers and RIAs to integrate Broadridge back-office clearing and custody data into front-office wealth management applications.
  version: 1.0.0
  contact:
    name: Broadridge Developer Contact
    url: https://www.broadridge.com/resource/developer-api-contact
servers:
- url: https://api.broadridge.example.com
  description: Broadridge Wealth API
security:
- oauth2: []
- bearerAuth: []
tags:
- name: Positions
  description: Portfolio positions and holdings
paths:
  /wealth/v1/accounts/{accountNumber}/positions:
    get:
      operationId: getAccountPositions
      summary: Get account positions
      description: Retrieve all securities holdings/positions in an account.
      tags:
      - Positions
      parameters:
      - name: accountNumber
        in: path
        required: true
        schema:
          type: string
      - name: asOfDate
        in: query
        schema:
          type: string
          format: date
      - name: assetClass
        in: query
        schema:
          type: string
          enum:
          - Equity
          - FixedIncome
          - MutualFund
          - ETF
          - Options
          - Cash
          - Alternative
      responses:
        '200':
          description: Account positions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PositionList'
components:
  schemas:
    Position:
      type: object
      properties:
        positionId:
          type: string
        accountNumber:
          type: string
        cusip:
          type: string
        symbol:
          type: string
        securityDescription:
          type: string
        assetClass:
          type: string
          enum:
          - Equity
          - FixedIncome
          - MutualFund
          - ETF
          - Options
          - Cash
          - Alternative
        quantity:
          type: number
        price:
          type: number
        marketValue:
          type: number
        costBasis:
          type: number
        unrealizedGainLoss:
          type: number
        unrealizedGainLossPct:
          type: number
        currency:
          type: string
        asOfDate:
          type: string
          format: date
    PositionList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Position'
        totalMarketValue:
          type: number
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://auth.broadridge.example.com/oauth/token
          scopes:
            accounts:read: Read account data
            positions:read: Read position data
            transactions:read: Read transaction data
    bearerAuth:
      type: http
      scheme: bearer