CMS — Centers for Medicare & Medicaid Services Plans API

The Plans API from CMS — Centers for Medicare & Medicaid Services — 2 operation(s) for plans.

Operations 2

POST /plans/search Search Marketplace Plans #
GET /plans/{planId} Get Plan Details #

Documentation

Specifications

Schemas & Data

Other Resources

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/cms-gov-plans-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

cms-gov-plans-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CMS Marketplace Plans API
  description: 'The Marketplace API exposes Qualified Health Plan (QHP) and Stand-alone Dental Plan

    (SADP) data from healthcare.gov including plan finder, plan compare, plan rates, plan

    benefits, and crosswalks. Powers consumer plan-shopping experiences across

    HealthCare.gov and partner brokers.

    '
  version: '1.0'
  contact:
    name: CMS Marketplace API
    url: https://developer.cms.gov/marketplace-api/
  license:
    name: Public Domain (U.S. Government Work)
    url: https://www.usa.gov/government-works
servers:
- url: https://marketplace.api.healthcare.gov/api/v1
  description: Production
security:
- ApiKey: []
tags:
- name: Plans
paths:
  /plans/search:
    post:
      summary: Search Marketplace Plans
      operationId: searchPlans
      description: Search QHPs available to a household based on location, income, and household composition.
      tags:
      - Plans
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                household:
                  type: object
                place:
                  type: object
                market:
                  type: string
                  enum:
                  - Individual
                  - SHOP
                year:
                  type: integer
      responses:
        '200':
          description: List of matching plans
          content:
            application/json:
              schema:
                type: object
                properties:
                  total:
                    type: integer
                  plans:
                    type: array
                    items:
                      $ref: '#/components/schemas/Plan'
  /plans/{planId}:
    get:
      summary: Get Plan Details
      operationId: getPlan
      tags:
      - Plans
      parameters:
      - name: planId
        in: path
        required: true
        schema:
          type: string
      - name: year
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: Plan details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Plan'
components:
  schemas:
    Plan:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        issuer:
          type: object
        metal_level:
          type: string
          enum:
          - Bronze
          - Silver
          - Gold
          - Platinum
          - Catastrophic
        type:
          type: string
          enum:
          - HMO
          - PPO
          - EPO
          - POS
          - Indemnity
        premium:
          type: number
        deductibles:
          type: array
          items:
            type: object
        moops:
          type: array
          items:
            type: object
        benefits:
          type: array
          items:
            type: object
  securitySchemes:
    ApiKey:
      type: apiKey
      in: query
      name: apikey