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

# Get Wallets

GET https://v1/api/wallets

### Get Wallets

The **Get Wallets** endpoint retrieves a list of wallets associated with your account, including current balances and status information.

Use this endpoint to verify available funds before initiating a disbursement.

Reference: https://docs.epaygames.io/epaygames-payments-disbursement-api/disbursement-api/wallet/get-wallets

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /v1/api/wallets:
    get:
      operationId: Get Wallets
      summary: Get Wallets
      description: >-
        ### Get Wallets


        The **Get Wallets** endpoint retrieves a list of wallets associated with
        your account, including current balances and status information.


        Use this endpoint to verify available funds before initiating a
        disbursement.
      tags:
        - wallet
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Disbursement API_Wallet_Get
                  Wallets_Response_200
servers:
  - url: https:/
    description: https://{payments_api_host}
components:
  schemas:
    V1ApiWalletsGetResponsesContentApplicationJsonSchemaDataWalletsItems:
      type: object
      properties:
        for:
          type: string
        description:
          type: string
        code:
          type: string
        wallet_number:
          type: string
        currency:
          type: string
        balance:
          type: integer
        current:
          type: integer
        available:
          type: integer
      required:
        - for
        - description
        - code
        - wallet_number
        - currency
        - balance
        - current
        - available
      title: V1ApiWalletsGetResponsesContentApplicationJsonSchemaDataWalletsItems
    V1ApiWalletsGetResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        wallets:
          type: array
          items:
            $ref: >-
              #/components/schemas/V1ApiWalletsGetResponsesContentApplicationJsonSchemaDataWalletsItems
      required:
        - wallets
      title: V1ApiWalletsGetResponsesContentApplicationJsonSchemaData
    Disbursement API_Wallet_Get Wallets_Response_200:
      type: object
      properties:
        message:
          type: string
        data:
          $ref: >-
            #/components/schemas/V1ApiWalletsGetResponsesContentApplicationJsonSchemaData
      required:
        - message
        - data
      title: Disbursement API_Wallet_Get Wallets_Response_200

```

## Examples



**Response**

```json
{
  "message": "",
  "data": {
    "wallets": [
      {
        "for": "Eplayment",
        "description": "For InstaPay, PESONet, OTC, etc.",
        "code": "EPLAYMENT",
        "wallet_number": "878850500001",
        "currency": "PHP",
        "balance": 136,
        "current": 136,
        "available": 136
      },
      {
        "for": "Maya",
        "description": "For Maya (formerly PayMaya).",
        "code": "MAYA",
        "wallet_number": "878850500060",
        "currency": "PHP",
        "balance": 999,
        "current": 999,
        "available": 999
      }
    ]
  }
}
```

**SDK Code**

```python Disbursement API_Wallet_Get Wallets_example
import requests

url = "https://https/v1/api/wallets"

response = requests.get(url)

print(response.json())
```

```javascript Disbursement API_Wallet_Get Wallets_example
const url = 'https://https/v1/api/wallets';
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 Disbursement API_Wallet_Get Wallets_example
package main

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

func main() {

	url := "https://https/v1/api/wallets"

	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 Disbursement API_Wallet_Get Wallets_example
require 'uri'
require 'net/http'

url = URI("https://https/v1/api/wallets")

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

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

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

```java Disbursement API_Wallet_Get Wallets_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://https/v1/api/wallets")
  .asString();
```

```php Disbursement API_Wallet_Get Wallets_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://https/v1/api/wallets');

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

```csharp Disbursement API_Wallet_Get Wallets_example
using RestSharp;

var client = new RestClient("https://https/v1/api/wallets");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift Disbursement API_Wallet_Get Wallets_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://https/v1/api/wallets")! 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()
```