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

# Get Current User's Business Wallet

GET http://localhost:8080/api/v3/wallets/business

Returns the current user's BUSINESS wallet (most recently created, if the user owns several), including M-Pesa payment details: Paybill shortcode, account number (full Choice Bank externalId), and derived Sare till number.

Reference: https://apidocs.sare.africa/sare-core-api/wallet/business/get-current-user-s-business-wallet

## Response

### 200

OK

- `code` (integer, required)
- `data` (object, required)
  - `balance` (double, required)
  - `currency` (string, required)
  - `walletId` (string, required)
  - `walletType` (string, required)
  - `businessName` (string, required)
  - `walletStatus` (string, required)
  - `sareTillNumber` (string, required)
  - `mpesaAccountNumber` (string, required)
  - `mpesaPaybillShortcode` (string, required)
- `message` (string, required)

## Errors

### 404 Not Found Error

Not Found

- `path` (string, required)
- `status` (integer, required)
- `message` (string, required)

### 422 Unprocessable Entity Error

Unprocessable Content

- `path` (string, required)
- `status` (integer, required)
- `message` (string, required)

## Examples

**Response**

```json
{
  "code": 200,
  "data": {
    "balance": 1250.5,
    "currency": "KES",
    "walletId": "b1e7f6a0-9d2b-4a5b-9c3d-1a2b3c4d5e6f",
    "walletType": "BUSINESS",
    "businessName": "Sare Shop",
    "walletStatus": "ACTIVE",
    "sareTillNumber": "68891",
    "mpesaAccountNumber": "46012000068891",
    "mpesaPaybillShortcode": "4101847"
  },
  "message": "Business wallet retrieved successfully"
}
```

**SDK Code**

```python Wallet_Business_Get Current User's Business Wallet_example
import requests

url = "http://localhost:8080/api/v3/wallets/business"

response = requests.get(url)

print(response.json())
```

```javascript Wallet_Business_Get Current User's Business Wallet_example
const url = 'http://localhost:8080/api/v3/wallets/business';
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_Business_Get Current User's Business Wallet_example
package main

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

func main() {

	url := "http://localhost:8080/api/v3/wallets/business"

	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_Business_Get Current User's Business Wallet_example
require 'uri'
require 'net/http'

url = URI("http://localhost:8080/api/v3/wallets/business")

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

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

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

```java Wallet_Business_Get Current User's Business Wallet_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("http://localhost:8080/api/v3/wallets/business")
  .asString();
```

```php Wallet_Business_Get Current User's Business Wallet_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'http://localhost:8080/api/v3/wallets/business');

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

```csharp Wallet_Business_Get Current User's Business Wallet_example
using RestSharp;

var client = new RestClient("http://localhost:8080/api/v3/wallets/business");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift Wallet_Business_Get Current User's Business Wallet_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "http://localhost:8080/api/v3/wallets/business")! 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()
```