broadridge · Schema

Broadridge Position

JSON Schema for a Broadridge Wealth Management securities position (holding) in a brokerage account.

Fortune 1000

Properties

Name Type Description
positionId string Unique position identifier
accountNumber string Brokerage account number
cusip string Committee on Uniform Securities Identification Procedures number
symbol string Ticker symbol
securityDescription string Full security name/description
assetClass string
quantity number Number of shares or units held
price number Current price per share/unit
marketValue number Total market value (quantity * price)
costBasis number Total cost basis for the position
unrealizedGainLoss number Unrealized gain/loss (marketValue - costBasis)
unrealizedGainLossPct number Unrealized gain/loss as percentage of cost basis
currency string
asOfDate string Date the position data is as-of
View JSON Schema on GitHub

JSON Schema

broadridge-position-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/broadridge/refs/heads/main/json-schema/broadridge-position-schema.json",
  "title": "Broadridge Position",
  "description": "JSON Schema for a Broadridge Wealth Management securities position (holding) in a brokerage account.",
  "type": "object",
  "required": ["positionId", "accountNumber", "symbol", "quantity"],
  "properties": {
    "positionId": {
      "type": "string",
      "description": "Unique position identifier"
    },
    "accountNumber": {
      "type": "string",
      "description": "Brokerage account number"
    },
    "cusip": {
      "type": "string",
      "description": "Committee on Uniform Securities Identification Procedures number",
      "pattern": "^[A-Z0-9]{9}$"
    },
    "symbol": {
      "type": "string",
      "description": "Ticker symbol"
    },
    "securityDescription": {
      "type": "string",
      "description": "Full security name/description"
    },
    "assetClass": {
      "type": "string",
      "enum": ["Equity", "FixedIncome", "MutualFund", "ETF", "Options", "Cash", "Alternative"]
    },
    "quantity": {
      "type": "number",
      "description": "Number of shares or units held"
    },
    "price": {
      "type": "number",
      "description": "Current price per share/unit",
      "minimum": 0
    },
    "marketValue": {
      "type": "number",
      "description": "Total market value (quantity * price)"
    },
    "costBasis": {
      "type": "number",
      "description": "Total cost basis for the position"
    },
    "unrealizedGainLoss": {
      "type": "number",
      "description": "Unrealized gain/loss (marketValue - costBasis)"
    },
    "unrealizedGainLossPct": {
      "type": "number",
      "description": "Unrealized gain/loss as percentage of cost basis"
    },
    "currency": {
      "type": "string",
      "default": "USD",
      "pattern": "^[A-Z]{3}$"
    },
    "asOfDate": {
      "type": "string",
      "format": "date",
      "description": "Date the position data is as-of"
    }
  }
}

Work with this as data

Every JSON Schema 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 schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • 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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/broadridge-position"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.