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

# Retrieve M-Pesa account

> Retrieve one configured M-Pesa Till or PayBill account.



## OpenAPI

````yaml /openapi.yml get /mpesa-paybill-accounts/{id}
openapi: 3.0.0
info:
  title: KulmiPay API
  description: >-
    Public API reference for KulmiPay collections, Send Money, wallets, refunds,
    and M-Pesa account configuration.
  version: 1.0.0
servers:
  - url: https://sandbox.kulmipay.com/api/v1
    description: Sandbox
  - url: https://app.kulmipay.com/api/v1
    description: Live
security:
  - SecretAPIKeyScheme: []
tags:
  - name: Collections
    description: >-
      Create hosted checkout sessions, M-Pesa STK Push requests, and payment
      status checks.
  - name: Send Money
    description: Initiate, approve, cancel, and track payout files.
  - name: Wallet as a Service
    description: Manage wallets, statements, wallet funding, and internal transfers.
  - name: Refunds
    description: Create and retrieve refund requests through the chargebacks API.
  - name: Bring Your M-Pesa Till/PayBill Number
    description: Configure M-Pesa Till and PayBill accounts.
  - name: Webhooks
    description: Retrieve webhook configuration and delivery events.
paths:
  /mpesa-paybill-accounts/{id}:
    parameters:
      - name: id
        in: path
        description: A unique integer value identifying this MPesa Paybill Account.
        required: true
        schema:
          type: integer
    get:
      tags:
        - Bring Your M-Pesa Till/PayBill Number
      summary: Retrieve M-Pesa account
      description: Retrieve one configured M-Pesa Till or PayBill account.
      operationId: mpesa-paybill-accounts_read
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MPesaPaybillAccountsSer'
components:
  schemas:
    MPesaPaybillAccountsSer:
      type: object
      properties:
        paybill:
          title: Paybill
          type: string
          readOnly: true
        account:
          title: Account
          type: integer
          readOnly: true
        created_at:
          title: Created at
          type: string
          format: date-time
          readOnly: true
          nullable: true
        updated_at:
          title: Updated at
          type: string
          format: date-time
          readOnly: true
          nullable: true
  securitySchemes:
    SecretAPIKeyScheme:
      type: http
      scheme: bearer
      description: Use your KulmiPay secret key as the Bearer token.
      x-default: ISSecretKey_test_xxxxxxxxxxxxxxxx

````