> ## 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.

# List Superbill Charge Candidates

> Candidate charges for the construct-super-bill picker.

Returns recent charges for the patient (last `days` by default). If
`event_ids` is provided, restricts to charges from those events. If
only the legacy `event_id` is provided, treats it as a single-element
filter (and additionally includes outside-the-window charges sharing
that event).



## OpenAPI

````yaml get /billing/patient/{patient_id}/superbill-charge-candidates
openapi: 3.1.0
info:
  title: Decoda API
  description: External API documentation for the Decoda Health platform.
  version: '1.0'
servers: []
security: []
paths:
  /billing/patient/{patient_id}/superbill-charge-candidates:
    get:
      tags:
        - Superbills
      summary: List Superbill Charge Candidates
      description: |-
        Candidate charges for the construct-super-bill picker.

        Returns recent charges for the patient (last `days` by default). If
        `event_ids` is provided, restricts to charges from those events. If
        only the legacy `event_id` is provided, treats it as a single-element
        filter (and additionally includes outside-the-window charges sharing
        that event).
      operationId: >-
        list_superbill_charge_candidates_billing_patient__patient_id__superbill_charge_candidates_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: patient_id
          in: path
          required: true
          schema:
            type: string
            title: Patient Id
        - name: event_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Event Id
        - name: event_ids
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            title: Event Ids
        - name: days
          in: query
          required: false
          schema:
            type: integer
            default: 30
            title: Days
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SuperbillChargeCandidate'
                title: >-
                  Response List Superbill Charge Candidates Billing Patient 
                  Patient Id  Superbill Charge Candidates Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SuperbillChargeCandidate:
      properties:
        id:
          type: string
          title: Id
        total:
          type: integer
          title: Total
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        status:
          type: string
          title: Status
        createdDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Createddate
        eventId:
          anyOf:
            - type: string
            - type: 'null'
          title: Eventid
        items:
          items:
            $ref: '#/components/schemas/SuperbillChargeCandidateItem'
          type: array
          title: Items
      type: object
      required:
        - id
        - total
        - status
        - items
      title: SuperbillChargeCandidate
      description: One row of the construct-wizard's step-2 charges picker.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SuperbillChargeCandidateItem:
      properties:
        id:
          type: string
          title: Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        quantity:
          type: number
          title: Quantity
        price:
          type: integer
          title: Price
      type: object
      required:
        - id
        - quantity
        - price
      title: SuperbillChargeCandidateItem
    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

````