Morningstar Financial Planning APIs

US financial-planning building blocks from the Dynamic Services APIs family - households, household members, portfolios, retirement plan lookup and benchmark fees, statement OCR, and report retrieval/file management.

Operations 1

GET /v1/retirementplan/BenchmarkFees Get retirement plan benchmark fees

Documentation

Specifications

OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-benchmarkfees-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-buckets-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-custodians-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-holdings-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-households-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-office-client-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-office-institution-client-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-office-members-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-plan-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-plannames-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-profiles-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-report-files-api-openapi.yml
OpenAPI
https://raw.githubusercontent.com/api-evangelist/morningstar/refs/heads/main/openapi/morningstar-statement-details-api-openapi.yml

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/morningstar-financial-planning-apis"
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

morningstar-benchmarkfees-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Authorization Tokens Accounts Benchmark Fees API
  description: 'Use the `oauth` endpoint to generate the secure, time-limited JSON Web Tokens (JWTs) used to authorize access to APIs and components.</br></br>

    To request a token, click Authorize and enter the following credentials:


    * Username - Your Client ID.

    * Password - Your Client Secret.'
servers:
- url: https://www.us-api.morningstar.com/token
  description: PROD US
- url: https://www.emea-api.morningstar.com/token
  description: PROD EMEA
- url: https://www.apac-api.morningstar.com/token
  description: PROD APAC
security:
- BasicAuth: []
tags:
- name: BenchmarkFees
paths:
  /v1/retirementplan/BenchmarkFees:
    get:
      tags:
      - BenchmarkFees
      summary: Get retirement plan benchmark fees
      description: Get a list of standard retirement plan benchmark fees. The response will return a list of all benchmark fee models the user is entitled for. No parameters are required to be passed for this API.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BenchmarkFeeModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BenchmarkFeeModel'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BenchmarkFeeModel'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BenchmarkFeeModel'
        '401':
          description: Unauthorized
        '500':
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
            application/xml:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
            text/xml:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
components:
  schemas:
    ErrorDetails:
      type: object
      properties:
        statusCode:
          type: integer
          format: int32
        message:
          type:
          - string
          - 'null'
      additionalProperties: false
    BenchmarkFeeModel:
      type: object
      properties:
        benchmarkName:
          type:
          - string
          - 'null'
          description: Name of the benchmark, including applicable plan size dollar amount range
        benchmarkFeeRatio:
          type: number
          description: Typical plan-level fee for a retirement plan of this size
          format: double
        benchmarkFeeandExpenseAvg:
          type: number
          description: Average investment expenses for a retirement plan of this size
          format: double
      additionalProperties: false
      description: Benchmark Fee Model
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic