BlackRock · Schema
BlackRock Aladdin Portfolio
Schema for a portfolio record in the BlackRock Aladdin platform
Asset ManagementFinanceFintechInvestment ManagementPortfolio-ManagementRisk AnalyticsFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| portfolioId | string | Unique portfolio identifier in Aladdin |
| portfolioName | string | Display name of the portfolio |
| currency | string | Base currency (ISO 4217) |
| totalMarketValue | number | Total market value of the portfolio in base currency |
| asOfDate | string | Valuation date |
| benchmarkId | string | Benchmark identifier for performance attribution |
| managerId | string | Portfolio manager identifier |
| strategy | string | Investment strategy or mandate |
| positions | array | Holdings within the portfolio |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/blackrock/main/json-schema/blackrock-portfolio-schema.json",
"title": "BlackRock Aladdin Portfolio",
"description": "Schema for a portfolio record in the BlackRock Aladdin platform",
"type": "object",
"properties": {
"portfolioId": {
"type": "string",
"description": "Unique portfolio identifier in Aladdin"
},
"portfolioName": {
"type": "string",
"description": "Display name of the portfolio"
},
"currency": {
"type": "string",
"description": "Base currency (ISO 4217)",
"example": "USD"
},
"totalMarketValue": {
"type": "number",
"description": "Total market value of the portfolio in base currency"
},
"asOfDate": {
"type": "string",
"format": "date",
"description": "Valuation date"
},
"benchmarkId": {
"type": "string",
"description": "Benchmark identifier for performance attribution"
},
"managerId": {
"type": "string",
"description": "Portfolio manager identifier"
},
"strategy": {
"type": "string",
"description": "Investment strategy or mandate"
},
"positions": {
"type": "array",
"description": "Holdings within the portfolio",
"items": {
"$ref": "#/$defs/Position"
}
}
},
"required": ["portfolioId", "portfolioName", "currency", "asOfDate"],
"$defs": {
"Position": {
"type": "object",
"properties": {
"securityId": { "type": "string" },
"identifier": { "type": "string", "description": "ISIN, CUSIP, or SEDOL" },
"quantity": { "type": "number" },
"marketValue": { "type": "number" },
"weight": { "type": "number", "description": "Weight as decimal (0-1)" },
"assetClass": { "type": "string" },
"currency": { "type": "string" }
}
}
}
}
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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/blackrock-portfolio"
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 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.