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

# Get Biller List

> Retrieves a list of available billers for services such as airtime, data bundles, electricity, and water across supported countries.



## OpenAPI

````yaml GET /api/bill-payment/get-biller-list
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://test.digitaltermination.com
  - url: https://business-sandbox.instntmny.com
security: []
paths:
  /api/bill-payment/get-biller-list:
    get:
      tags:
        - Bill Payment
      summary: Get Available Billers
      description: >-
        Retrieves a list of available billers for services such as airtime, data
        bundles, electricity, and water across supported countries.
      responses:
        '200':
          description: A list of billers successfully retrieved.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: '1234'
                        name:
                          type: string
                          example: MTN Airtime
                        alias:
                          type: string
                          example: MTN
                        category:
                          type: string
                          example: Airtime
                        countries:
                          type: string
                          example: GH
                        logo_url:
                          type: string
                          example: >-
                            https://test.digitaltermination.com/images/logos/billers/gotvmax.png
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````