> ## Documentation Index
> Fetch the complete documentation index at: https://docs.decodahealth.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Modifiers

> Search billing modifiers from the canonical ``modifier`` reference table.

Backs the searchable modifier picker on the Super Bill editor (e.g. code
"76" = "Repeat Procedure or Service by Same Physician"). The modifier set is
small, so an empty query returns the full list (browsable dropdown); a
non-empty query matches on code or description. Ordered by code for a stable
display.



## OpenAPI

````yaml get /medical-codes/modifiers/search
openapi: 3.1.0
info:
  title: Decoda API
  description: External API documentation for the Decoda Health platform.
  version: '1.0'
servers: []
security: []
paths:
  /medical-codes/modifiers/search:
    get:
      tags:
        - Medical Codes
      summary: Search Modifiers
      description: >-
        Search billing modifiers from the canonical ``modifier`` reference
        table.


        Backs the searchable modifier picker on the Super Bill editor (e.g. code

        "76" = "Repeat Procedure or Service by Same Physician"). The modifier
        set is

        small, so an empty query returns the full list (browsable dropdown); a

        non-empty query matches on code or description. Ordered by code for a
        stable

        display.
      operationId: search_modifiers_medical_codes_modifiers_search_get
      parameters:
        - name: TENANT
          in: header
          required: true
          schema:
            type: string
            title: Tenant
          description: The tenant you are making this request on behalf of
        - name: API-KEY
          in: header
          required: true
          schema:
            type: string
            title: Api-Key
          description: Your api key
        - name: query
          in: query
          required: false
          schema:
            type: string
            description: Optional search query; empty returns the full modifier list
            default: ''
            title: Query
          description: Optional search query; empty returns the full modifier list
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            description: Maximum number of results to return
            default: 20
            title: Limit
          description: Maximum number of results to return
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ModifierCode'
                title: Response Search Modifiers Medical Codes Modifiers Search Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ModifierCode:
      properties:
        code:
          type: string
          title: Code
        description:
          type: string
          title: Description
      type: object
      required:
        - code
        - description
      title: ModifierCode
      description: >-
        A billing modifier from the canonical ``modifier`` reference table — its

        ``code`` plus the modifier ``description``. Backs the Super Bill
        editor's

        browsable modifier search.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````