broadridge Performance API

Portfolio performance data

Operations 1

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

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-performance-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-performance-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Broadridge Wealth Management Accounts Performance 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: Performance
  description: Portfolio performance data
paths:
  /wealth/v1/accounts/{accountNumber}/performance:
    get:
      operationId: getAccountPerformance
      summary: Get account performance
      description: Retrieve time-weighted return and performance metrics for an account.
      tags:
      - Performance
      parameters:
      - name: accountNumber
        in: path
        required: true
        schema:
          type: string
      - name: fromDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: toDate
        in: query
        schema:
          type: string
          format: date
      - name: benchmark
        in: query
        description: Benchmark ticker symbol for comparison
        schema:
          type: string
      responses:
        '200':
          description: Account performance data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountPerformance'
components:
  schemas:
    AccountPerformance:
      type: object
      properties:
        accountNumber:
          type: string
        fromDate:
          type: string
          format: date
        toDate:
          type: string
          format: date
        timeWeightedReturn:
          type: number
          description: Time-weighted rate of return as percentage
        moneyWeightedReturn:
          type: number
        beginningValue:
          type: number
        endingValue:
          type: number
        netCashFlow:
          type: number
        incomeEarned:
          type: number
        benchmarkReturn:
          type: number
        benchmarkSymbol:
          type: string
  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