Optum Claim API

The Claim API from Optum — 2 operation(s) for claim.

Business capability
Claim Production & Submission BC-2870.30

Operations 2

POST /claim/precare/v1 Dental Claim Pre-Check (GraphQL) #
GET /claim/precare/v1/healthcheck Health check #

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-claim-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-claim-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dental Pre-Care Estimate Claim API
  version: 1.0.0
  description: Invokes the Dental Pre-Care Estimate GraphQL API. This API validates a claim before submission by running a `Claims Pre‑Check` against payer rules, X12 formatting, eligibility, and adjudication logic.
servers:
- url: https://sandbox-apigw.optum.com/oihub/dental
security:
- bearerAuth: []
tags:
- name: Claim
paths:
  /claim/precare/v1:
    post:
      summary: Dental Claim Pre-Check (GraphQL)
      operationId: dentalClaimPrecheck
      parameters:
      - in: header
        name: apim-gateway-client-id
        description: API Gateway client identifier
        required: true
        schema:
          type: string
      - in: header
        name: providerTaxId
        description: Provider Tax ID
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                query:
                  type: string
                  description: GraphQL query string
                  example: "query getClaimPrecheck($input: ClaimInput!) {\n  claimPreCheck(input: $input) {\n    transactionId\n    x12ResponseData\n    responseType\n    x12Response277CA\n    x12Response835\n    message\n    statusCode\n  }\n}\n"
                variables:
                  type: object
                  properties:
                    input:
                      type: object
                      properties:
                        payerId:
                          type: string
                          example: '52133'
                        x12RequestData:
                          type: string
                          description: Raw 837 X12 request payload
                          example: ISA*00*...~GS*HC*...
              required:
              - query
              - variables
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      claimPreCheck:
                        type: object
                        properties:
                          transactionId:
                            type: string
                          x12ResponseData:
                            type: string
                          responseType:
                            type: string
                          x12Response277CA:
                            type: string
                          x12Response835:
                            type: string
                          message:
                            type: string
                          statusCode:
                            type: integer
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '500':
          description: Internal Server Error
      security:
      - bearerAuth: []
      tags:
      - Claim
  /claim/precare/v1/healthcheck:
    get:
      summary: Health check
      operationId: dentalClaimPrecheckHealth
      responses:
        '200':
          description: Service is healthy
      security:
      - bearerAuth: []
      tags:
      - Claim
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Enter a Bearer access token. The API Explorer applies the Bearer scheme.
x-readme:
  explorer-enabled: true
  proxy-enabled: true