> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidocs.sare.africa/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.sare.africa/_mcp/server.

# List Bill Providers

GET http://localhost:8080/api/v3/bill-providers

Reference: https://apidocs.sare.africa/sare-core-api/wallet/bills-accounts-providers/list-bill-providers

## Request

### Query parameters

- `billProviderName` (string, optional)
- `isActive` (boolean, optional)
- `category` (string, optional)
- `status` (string, optional)
- `page` (integer, optional)
- `size` (integer, optional)

## Response

### 200

OK

- `code` (integer, required)
- `data` (object, required)
  - `size` (integer, required)
  - `content` (list of object, required)
    - `id` (string, required)
    - `name` (string, required)
    - `logoUrl` (string, required)
    - `category` (string, required)
    - `isActive` (boolean, required)
    - `createdAt` (datetime, required)
    - `updatedAt` (datetime, required)
    - `accountType` (string, required)
    - `mediumLogoUrl` (string, required)
    - `approvalStatus` (string, required)
    - `businessNumber` (string, required)
    - `shortDescription` (string, required)
    - `thumbnailLogoUrl` (string, required)
  - `isLastPage` (boolean, required)
  - `pageNumber` (integer, required)
  - `totalPages` (integer, required)
  - `totalElements` (integer, required)
- `message` (string, required)

## Examples

**Response**

```json
{
  "code": 200,
  "data": {
    "size": 20,
    "content": [
      {
        "id": "5c6d7e8f-9a0b-4c1d-8e2f-3a4b5c6d7e8f",
        "name": "Kenya Power",
        "logoUrl": "https://cdn.sare.africa/bill-providers/kplc.png",
        "category": "ELECTRICITY",
        "isActive": false,
        "createdAt": "2026-09-17T10:00:00Z",
        "updatedAt": "2026-09-17T10:00:00Z",
        "accountType": "METER_NO",
        "mediumLogoUrl": "https://cdn.sare.africa/bill-providers/kplc-medium.png",
        "approvalStatus": "PENDING",
        "businessNumber": "888880",
        "shortDescription": "Postpaid electricity token top-up",
        "thumbnailLogoUrl": "https://cdn.sare.africa/bill-providers/kplc-thumb.png"
      }
    ],
    "isLastPage": true,
    "pageNumber": 1,
    "totalPages": 1,
    "totalElements": 1
  },
  "message": "Bill providers retrieved successfully"
}
```

**SDK Code**

```python Wallet_Bills - Accounts & Providers_List Bill Providers_example
import requests

url = "http://localhost:8080/api/v3/bill-providers"

querystring = {"billProviderName":"Kenya","category":"ELECTRICITY","isActive":"true","page":"0","size":"20","status":"APPROVED"}

response = requests.get(url, params=querystring)

print(response.json())
```

```javascript Wallet_Bills - Accounts & Providers_List Bill Providers_example
const url = 'http://localhost:8080/api/v3/bill-providers?billProviderName=Kenya&category=ELECTRICITY&isActive=true&page=0&size=20&status=APPROVED';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Wallet_Bills - Accounts & Providers_List Bill Providers_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "http://localhost:8080/api/v3/bill-providers?billProviderName=Kenya&category=ELECTRICITY&isActive=true&page=0&size=20&status=APPROVED"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Wallet_Bills - Accounts & Providers_List Bill Providers_example
require 'uri'
require 'net/http'

url = URI("http://localhost:8080/api/v3/bill-providers?billProviderName=Kenya&category=ELECTRICITY&isActive=true&page=0&size=20&status=APPROVED")

http = Net::HTTP.new(url.host, url.port)

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

```java Wallet_Bills - Accounts & Providers_List Bill Providers_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("http://localhost:8080/api/v3/bill-providers?billProviderName=Kenya&category=ELECTRICITY&isActive=true&page=0&size=20&status=APPROVED")
  .asString();
```

```php Wallet_Bills - Accounts & Providers_List Bill Providers_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'http://localhost:8080/api/v3/bill-providers?billProviderName=Kenya&category=ELECTRICITY&isActive=true&page=0&size=20&status=APPROVED');

echo $response->getBody();
```

```csharp Wallet_Bills - Accounts & Providers_List Bill Providers_example
using RestSharp;

var client = new RestClient("http://localhost:8080/api/v3/bill-providers?billProviderName=Kenya&category=ELECTRICITY&isActive=true&page=0&size=20&status=APPROVED");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift Wallet_Bills - Accounts & Providers_List Bill Providers_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "http://localhost:8080/api/v3/bill-providers?billProviderName=Kenya&category=ELECTRICITY&isActive=true&page=0&size=20&status=APPROVED")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```