Optum Coding Documentation Guideline APIs API

The Coding Documentation Guideline APIs API from Optum — 2 operation(s) for coding documentation guideline apis.

Operations 2

GET /api/optum/facility/{codetype}/cdg Fetches the list of clinical documentation guidelines #
GET /api/optum/facility/cdg/{code}/document Fetches the file content for clinical coding guidelines #

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/optum-coding-documentation-guideline-apis-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 email required.

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

OpenAPI Specification

optum-coding-documentation-guideline-apis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Optum Common Facility Coding Documentation Guideline APIs API
  description: MicroService that contains Optum module-related information
  contact:
    name: Ken Kracker
    email: ken.kracker@optum.com
  version: v1.0
servers:
- url: /v1/optumcommonms
tags:
- name: Coding Documentation Guideline APIs
paths:
  /api/optum/facility/{codetype}/cdg:
    get:
      tags:
      - Coding Documentation Guideline APIs
      summary: Fetches the list of clinical documentation guidelines
      operationId: fetchCDGList
      parameters:
      - name: codetype
        in: path
        required: true
        schema:
          type: string
          enum:
          - i9v1
          - i9v3
          - i10_cm
          - i10_pcs
          - hcpcs
          - cpt
      - name: yyyy-MM-dd
        in: header
        description: Date for which historical data is required
        required: false
        schema:
          type: string
          format: yyyy-MM-dd
      responses:
        '200':
          description: Fetches the list of clinical documentation guidelines
          content:
            application/json:
              example:
              - rangeBegCode: '001'
                rangeEndCode: '139.8'
                rangeHeader: 1. Infectious And Parasitic Diseases (001-139)
                cdgInfoList:
                - code: '003.0'
                  fullDescription: Salmonella gastroenteritis
                  cdgAttachmentId: 59275
                - code: '005.0'
                  fullDescription: Staphylococcal food poisoning
                  cdgAttachmentId: 59275
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notification'
              example:
                timestamp: '2023-07-14T06:37:03.741+00:00'
                status: 404
                error: Not Found
                message: Not Found
                path: /optumcommonms/api/optum/facility/cdeg
        '500':
          description: Interal server error
          content:
            application/json:
              example:
                timestamp: '2023-07-28T06:36:22.518+00:00'
                path: /optumcommonms/api/optum/facility/cdg
                status: 500
                error: Internal Server Error
                requestId: e36d239e-324
      security:
      - bearerAuth: []
  /api/optum/facility/cdg/{code}/document:
    get:
      tags:
      - Coding Documentation Guideline APIs
      summary: Fetches the file content for clinical coding guidelines
      operationId: fetchCDGPDF
      parameters:
      - name: code
        in: path
        description: code
        required: true
        schema:
          type: string
        example: '003.0'
      - name: yyyy-MM-dd
        in: header
        description: Date for which historical data is required
        required: false
        schema:
          type: string
          format: yyyy-MM-dd
      responses:
        '200':
          description: Fetches the file content in the form of byte array, response headers and media type as FileType
          content:
            application/pdf:
              schema:
                $ref: '#/components/schemas/Notification'
              example: "  access-control-expose-headers: Content-Disposition\n  cache-control: no-cache,no-store,max-age=0,must-revalidate\n  connection: keep-alive\n  content-disposition: attachment; filename=cdg22.pdf\n  content-length: 254685\n  content-type: application/pdf\n  date: Thu,16 May 2024 06:49:56 GMT\n  expires: 0\n  pragma: no-cache\n  vary: Origin,Access-Control-Request-Method,Access-Control-Request-Headers\n  x-content-type-options: nosniff\n  x-frame-options: DENY\n  x-xss-protection: 0\n"
        '404':
          description: 'Not found: Sub terms not found'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notification'
              example:
                timestamp: '2023-07-28T06:19:48.666+00:00'
                status: 404
                error: Not Found
                message: Not Found
                path: /optumcommonms/api/optum/facility/cdg/{code}d
        '500':
          description: Internal server error
          content:
            application/json:
              example:
                timestamp: '2023-07-28T06:19:48.666+00:00'
                path: /optumcommonms/api/optum/facility/cdg/{code}/document
                status: 500
                error: Internal Server Error
                requestId: a4796cc7-1
      security:
      - bearerAuth: []
components:
  schemas:
    Notification:
      type: object
      properties:
        error:
          type: array
          items:
            type: string
        warning:
          type: array
          items:
            type: string
        info:
          type: array
          items:
            type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-readme:
  explorer-enabled: true
  proxy-enabled: true