Optum UB04 Code Lists API

The UB04 Code Lists API from Optum — 1 operation(s) for ub04 code lists.

Business capability
Healthcare Revenue Cycle Management BC-2870

Operations 1

GET /api/optum/facility/ub04/{codetype}/list Fetches the list of UB04 codes on codetype #

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-ub04-code-lists-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-ub04-code-lists-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Optum Common Facility UB04 Code Lists 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: UB04 Code Lists
paths:
  /api/optum/facility/ub04/{codetype}/list:
    get:
      tags:
      - UB04 Code Lists
      summary: Fetches the list of UB04 codes on codetype
      operationId: getUb04Codes
      parameters:
      - name: page
        in: query
        required: false
        schema:
          type: integer
          format: int32
          default: 1
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          format: int32
          default: 50
      - name: codetype
        in: path
        description: UB04 Code Type
        required: true
        schema:
          type: string
          enum:
          - value-codes
          - occurrence-date-codes
          - condition-codes
          - occurrence-span-codes
      - 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: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OptumPageImplCode'
      security:
      - bearerAuth: []
components:
  schemas:
    OptumPageImplCode:
      type: object
      properties:
        content:
          type: array
          items:
            $ref: '#/components/schemas/Code'
        totalCount:
          type: integer
          format: int64
    Code:
      type: object
      properties:
        codeValue:
          type: string
        description:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-readme:
  explorer-enabled: true
  proxy-enabled: true