# Fetch Biller Categories

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/biller/billerType:
    get:
      summary: Fetch Biller Categories
      deprecated: false
      description: >-

        :::highlight purple 📌

        Use this API to retrieve the list of biller categories supported by the
        BBPS platform.

        This allows you to display or filter billers by category such as
        electricity, water, gas, telecom—making it easier for users to select
        the appropriate service when paying their bills.


        :::
      operationId: getBillers
      tags:
        - Bharat Connect (BBPS)/APIs - BBPS/Bill Payment/Fetch Bill
        - Bill Payment
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationResponseListBillerCategories'
          headers: {}
          x-apidog-name: OK
      security:
        - bearer: []
      x-apidog-folder: Bharat Connect (BBPS)/APIs - BBPS/Bill Payment/Fetch Bill
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-12513275-run
components:
  schemas:
    ApplicationResponseListBillerCategories:
      type: object
      properties:
        response_code:
          type: integer
          format: int32
        response_message:
          type: string
        payload:
          type: array
          items:
            $ref: '#/components/schemas/BillerCategories'
      x-apidog-orders:
        - response_code
        - response_message
        - payload
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    BillerCategories:
      type: object
      properties:
        billerType:
          type: string
        label:
          type: string
      x-apidog-orders:
        - billerType
        - label
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
