Optum Anesthesia Fee APIs API

The Anesthesia Fee APIs API from Optum — 1 operation(s) for anesthesia fee apis.

Operations 1

GET /api/optum/physician/anesthesia-fee/{codetype}/{code} Fetches anesthesia fee carrier localities and units information for a given anesthesia code #

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-anesthesia-fee-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-anesthesia-fee-apis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Optum Common Physician Anesthesia Fee 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: Anesthesia Fee APIs
paths:
  /api/optum/physician/anesthesia-fee/{codetype}/{code}:
    get:
      tags:
      - Anesthesia Fee APIs
      summary: Fetches anesthesia fee carrier localities and units information for a given anesthesia code
      operationId: fetchAnesthesiaFee
      parameters:
      - name: codetype
        in: path
        required: true
        schema:
          type: string
          enum:
          - cpt
      - name: code
        in: path
        required: true
        schema:
          type: string
        example: '00100'
      - 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: Fetch anesthesia fee carrier localities and units information for a given anesthesia code
          content:
            application/json:
              example:
                anesCarrierLocalityList:
                - carrier: '10112'
                  locality: '00'
                  state: Alabama
                  conversionFactor: '19.77'
                - carrier: '02102'
                  locality: '01'
                  state: Alaska
                  conversionFactor: '28.54'
                anesPhysicalStatusUnitsList:
                - status: P1
                  description: A normal healthy patient
                  units: 0
                - status: P2
                  description: A patient with mild systemic disease
                  units: 0
                anesQualifyingCircumstancesUnitsList:
                - code: '99100 '
                  description: Anesthesia for patient of extreme age, younger than 1 year and older than 70 (List separately in addition to code for primary anesthesia procedure)
                  units: 1
                - code: '99116 '
                  description: Anesthesia complicated by utilization of total body hypothermia (List separately in addition to code for primary anesthesia procedure)
                  units: 5
                anesASABaseUnit: '05'
                anesCMSBaseUnit: '05'
                anesTimeUnit: '11.10'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notification'
              example:
                error:
                - The code provided 'E11.01' in this web service request is not a valid 'cpt' code.
                warning: null
                info: null
      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