Optum Submitter API Request HTTP Controller API

The submitter-api-request-http-controller API from Optum — 1 operation(s) for submitter-api-request-http-controller.

Business capability
Claim Production & Submission BC-2870.30

Operations 1

POST /pharmacy-claims #

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-submitter-api-request-http-controller-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-submitter-api-request-http-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Submitter API Request HTTP Controller API
  description: Submitter API Service
  license:
    name: Apache 2.0
    url: http://springdoc.org
  version: v1.0
servers:
- url: https://sandbox-apigw.optum.com/pharmacynetwork/submitter/v1
  description: Generated server url
tags:
- name: submitter-api-request-http-controller
paths:
  /pharmacy-claims:
    post:
      tags:
      - submitter-api-request-http-controller
      security:
      - oAuth:
        - read_healthcheck
      operationId: sendMessage
      parameters:
      - name: x-optum-trace-id
        in: header
        required: false
        schema:
          description: Identification string automatically assigned to this message by Optum. You do not need to include this on your message.
          example: X-optum-trace-id
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitterRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubmitterResponse'
components:
  schemas:
    KeyValuePair:
      type: object
      properties:
        name:
          description: The name of the first pair must be submitterID. The name for the second pair, if applicable, must be hostSubmitterID.
          example: submitterID
          type: string
        value:
          description: Enter the submitter ID in the first pair. If applicable, enter the Host Submitter ID in the second pair.
          example: BR_126
          type: string
    SubmitterResponse:
      type: object
      properties:
        headers:
          type: array
          items:
            $ref: '#/components/schemas/KeyValuePair'
        responseData:
          type: string
        type:
          type: string
        title:
          type: string
        detail:
          type: string
        status:
          type: string
        code:
          type: string
        instance:
          type: string
    SubmitterRequest:
      type: object
      properties:
        headers:
          type: array
          items:
            $ref: '#/components/schemas/KeyValuePair'
        messageData:
          description: The D0/F6 format claim encoded in Base 64 format.
          example: NjEwMTQ0RDBCMUQwVEVTVCAgICAxMDExMTk5OTk5OTkwICAgICAyMDI1MDEwMSAgICAgICAgICAeHEFNMDQcQzIxMjMzNTY3ODkcQzMwMRxDNjEcQ0NQVEZJUlNUMRxDRFBUTEFTVDEcQzExMjM0NTYeHEFNMDEcQzQxOTgwMDExORxDNTEcQzcxHENBUFRGSVJTVDEcQ0JQVExBU1QxHENNMTAwIFRlc3QcQ05GT1IgVFdPUlRIHENPVFgcQ1A3NjEwMhxDUTk4OTg5ODk4OTgcQ1gwMRxDWTYxMjgzNx0eHEFNMDccRU0xHEQyMjAyNDAxMDMwMRxFMTAzHEQ3NTIzNzIwNzg1MDEcRTcwMDAwMjAwMDAcRDMwHEQ1MRxENjEcRDgwHERFMjAyMDAxMTkcREYxHERKMRxFVTAcRFQxHDI4RUEeHEFNMTEcRDk5MxxEQzAcRE45ORxEUTk5MBxEVTEyMBxEWDMzMBxFMzM0MBxCRTQ1MBxIQTU1MBxHRTY2MBxIRTc3MDAwHEpFODgcSDcxHEg4MDIcSDk1NjAeHEFNMDMcMkpTVEVWRU4cMksxMDFUZXN0HDJNRk9SVFdPUlRIHDJOVFgcMlA0NDEyMhxFWjAxHERCMTc2MDY5MjAxNhxEUlNUUkFOR0UcUE01NzE5OTk1OTQ5
          type: string
  securitySchemes:
    oAuth:
      type: oauth2
      description: This API uses OAuth 2 with the client_credentials grant flow.
      flows:
        clientCredentials:
          tokenUrl: /apip/auth/sntl/v1/token
          scopes:
            read_txn: read transactions
            create_txn: submit a new transaction request
            read_coveragediscovery: read coverage discovery tasks
            create_coveragediscovery: submit a new coverage discovery task
            read_healthcheck: check the status of the system
x-readme:
  explorer-enabled: true
  proxy-enabled: true