Optum Prepaydme API

The prepaydme API from Optum — 1 operation(s) for prepaydme.

Operations 1

POST /abm/prepaydme/v1 PrePay DME API Endpoint

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-prepaydme-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-prepaydme-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ABM Prepay DME Claim API-1.0.0 Prepaydme API
  version: 1.0.0
  description: 'This is a wrapper API which internally calls ABM CES API to get the claim edits and DME Pricing API to get the rate and then update the claim amount.

    CES calls ABM PriorAuth API to get the matching PriorAuth record with remaining claimed unit. DME Claim API calculates Claim amount based on remaining unit and rate. This API needs auth bearer token which can be retrieved using https://sandbox-apigw.optum.com/apip/auth/sntl/v1/token. Please check documentation under Security section to get more details on auth token.'
servers:
- url: https://sandbox-apigw.optum.com
tags:
- name: prepaydme
paths:
  /abm/prepaydme/v1:
    post:
      summary: PrePay DME API Endpoint
      tags:
      - prepaydme
      requestBody:
        required: true
        content:
          application/xml:
            schema:
              type: object
              xml:
                name: request
              properties:
                environment:
                  type: string
                  xml:
                    name: environment
                enterprise-id:
                  type: string
                  xml:
                    name: enterprise-id
                claim:
                  type: object
                  xml:
                    name: claim
                  properties:
                    id:
                      type: string
                      xml:
                        name: id
                    subscriber-id:
                      type: string
                      xml:
                        name: subscriber-id
                    line:
                      type: object
                      xml:
                        name: line
                      properties:
                        id:
                          type: string
                          xml:
                            name: id
                        procedure-code:
                          type: string
                          xml:
                            name: procedure-code
              example: "<request>\n    <environment>live</environment>\n    <enterprise-id>ENTERPRISEID</enterprise-id>\n    <claim>\n        <id>ClaimId</id>\n        <subscriber-id>54654</subscriber-id>\n        <line>\n            <id>1</id>\n            <procedure-code>EXXXX</procedure-code>\n        </line>\n    </claim>\n</request>"
      responses:
        '200':
          description: Response for PREPAY DME API
          content:
            application/xml:
              schema:
                type: object
                xml:
                  name: request
                properties:
                  environment:
                    type: string
                    xml:
                      name: environment
                  enterprise-id:
                    type: string
                    xml:
                      name: enterprise-id
                  claim:
                    type: object
                    xml:
                      name: claim
                    properties:
                      id:
                        type: string
                        xml:
                          name: id
                      subscriber-id:
                        type: string
                        xml:
                          name: subscriber-id
                      line:
                        type: object
                        xml:
                          name: line
                        properties:
                          id:
                            type: string
                            xml:
                              name: id
                          procedure-code:
                            type: string
                            xml:
                              name: procedure-code
                example: "<request>\n    <environment>live</environment>\n    <enterprise-id>ENTERPRISEID</enterprise-id>\n    <claim>\n        <id>ClaimId</id>\n        <subscriber-id>54654</subscriber-id>\n        <line>\n            <id>1</id>\n            <procedure-code>EXXXX</procedure-code>\n        </line>\n    </claim>\n</request>"
x-readme:
  explorer-enabled: true
  proxy-enabled: true