Optum Filter Dictionary Terms API

Filter dictionary terms from a given string

Operations 1

GET /api/coding/filter-dictionary-terms #

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-filter-dictionary-terms-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-filter-dictionary-terms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Core Service Filter Dictionary Terms API
  description: Code Search Service provides the APIs for searching codes related information.
  contact:
    name: Ken Kracker
    email: ken.kracker@optum.com
  version: v1.0
servers:
- url: /v1/codesearchms
tags:
- name: Filter Dictionary Terms
  description: Filter dictionary terms from a given string
paths:
  /api/coding/filter-dictionary-terms:
    get:
      tags:
      - Filter Dictionary Terms
      operationId: dictTerms
      parameters:
      - name: value
        in: query
        required: true
        schema:
          type: string
      - 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: Successfully retrieved dictionary terms. This response returns a list of terms extracted from the provided value.
          content:
            application/json:
              schema:
                type: string
              example: '["Debridement","skin"]'
        '400':
          description: 'Bad request: Invalid parameters provided'
          content:
            application/json:
              example:
                timestamp: '2025-07-10T08:10:07.573+00:00'
                status: 400
                error: Bad Request
                message: Invalid search term provided
                path: codesearchms/api/coding/filter-dictionary-terms
        '401':
          description: Not Authorized
          content:
            application/json:
              example: Jwt is expired or invalid
        '404':
          description: Not Found - the endpoint was not found
        '405':
          description: Method Not Allowed - Request method not supported
        '500':
          description: Internal server error
          content:
            application/json:
              example:
                timestamp: '2023-07-28T06:36:22.518+00:00'
                path: codesearchms/api/coding/filter-dictionary-terms
                status: 500
                error: Internal Server Error
                requestId: e36d239e-324
        '503':
          description: Service Unavailable
      security:
      - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-readme:
  explorer-enabled: true
  proxy-enabled: true