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

GET https://v1/api/disbursement/channels

### Get Channels

The **Get Channels** endpoint retrieves the list of available disbursement channels supported by the platform (e.g., InstaPay, PESONet, e-wallets).

Use this endpoint to populate channel options in your payout UI or to validate a channel code before submitting a disbursement request.

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

## OpenAPI Specification

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


        The **Get Channels** endpoint retrieves the list of available
        disbursement channels supported by the platform (e.g., InstaPay,
        PESONet, e-wallets).


        Use this endpoint to populate channel options in your payout UI or to
        validate a channel code before submitting a disbursement request.
      tags:
        - disbursement
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Disbursement API_Disbursement_Get
                  Channels_Response_200
servers:
  - url: https:/
    description: https://{payments_api_host}
components:
  schemas:
    V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataChannelsItemsFee:
      type: object
      properties:
        fixed:
          type: integer
        percentage:
          type: integer
        type:
          type: string
        responsible:
          type: string
      required:
        - fixed
        - percentage
        - type
        - responsible
      title: >-
        V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataChannelsItemsFee
    V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataChannelsItemsFieldsItems:
      type: object
      properties:
        name:
          type: string
        text:
          type: string
        description:
          type: string
        type:
          type: string
        rules:
          type: array
          items:
            type: string
      required:
        - name
        - text
        - description
        - type
        - rules
      title: >-
        V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataChannelsItemsFieldsItems
    V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataChannelsItems:
      type: object
      properties:
        name:
          type: string
        description:
          description: Any type
        slug:
          type: string
        code:
          type: string
        fee:
          $ref: >-
            #/components/schemas/V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataChannelsItemsFee
        fields:
          type: array
          items:
            $ref: >-
              #/components/schemas/V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataChannelsItemsFieldsItems
      required:
        - name
        - slug
        - code
        - fee
        - fields
      title: >-
        V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataChannelsItems
    V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataMeta:
      type: object
      properties:
        current_page:
          type: integer
        from:
          type: integer
        last_page:
          type: integer
        per_page:
          type: integer
        to:
          type: integer
        total:
          type: integer
      required:
        - current_page
        - from
        - last_page
        - per_page
        - to
        - total
      title: >-
        V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataMeta
    V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        channels:
          type: array
          items:
            $ref: >-
              #/components/schemas/V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataChannelsItems
        meta:
          $ref: >-
            #/components/schemas/V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaDataMeta
      required:
        - channels
        - meta
      title: V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaData
    Disbursement API_Disbursement_Get Channels_Response_200:
      type: object
      properties:
        message:
          type: string
        data:
          $ref: >-
            #/components/schemas/V1ApiDisbursementChannelsGetResponsesContentApplicationJsonSchemaData
      required:
        - message
        - data
      title: Disbursement API_Disbursement_Get Channels_Response_200

```

## Examples



**Response**

```json
{
  "message": "",
  "data": {
    "channels": [
      {
        "name": "InstaPay",
        "slug": "instapay",
        "code": "INSTAPAY",
        "fee": {
          "fixed": 0,
          "percentage": 0,
          "type": "fixed",
          "responsible": "merchant"
        },
        "fields": [
          {
            "name": "bank_code",
            "text": "Bank Code",
            "description": "Bank code from Receiving Banks list.",
            "type": "string",
            "rules": [
              "required",
              "exists"
            ]
          },
          {
            "name": "sender.first_name",
            "text": "First Name",
            "description": "First name of the sender.",
            "type": "string",
            "rules": [
              "required",
              "max:32"
            ]
          },
          {
            "name": "sender.middle_name",
            "text": "Middle Name",
            "description": "Middle name of the sender. Optional field.",
            "type": "string",
            "rules": [
              "nullable",
              "max:32"
            ]
          },
          {
            "name": "sender.last_name",
            "text": "Last Name",
            "description": "Last name of the sender.",
            "type": "string",
            "rules": [
              "required",
              "max:32"
            ]
          },
          {
            "name": "sender.suffix",
            "text": "Suffix",
            "description": "Suffix of the sender. Example: Jr., Sr. Optional field.",
            "type": "string",
            "rules": [
              "nullable",
              "max:16"
            ]
          },
          {
            "name": "receiver.account_name",
            "text": "Account Name",
            "description": "Bank account name of the receiver.",
            "type": "string",
            "rules": [
              "required",
              "max:128"
            ]
          },
          {
            "name": "receiver.account_number",
            "text": "Account Number",
            "description": "Bank account number of the receiver.",
            "type": "string",
            "rules": [
              "required",
              "max:64"
            ]
          },
          {
            "name": "receiver.type",
            "text": "Type",
            "description": "Type of the receiver.",
            "type": "string",
            "rules": [
              "required",
              "in:INDIVIDUAL,CORPORATE"
            ],
            "options": [
              {
                "label": "Individual",
                "value": "INDIVIDUAL"
              },
              {
                "label": "Corporate",
                "value": "CORPORATE"
              }
            ]
          },
          {
            "name": "receiver.mobile_number",
            "text": "Mobile Number",
            "description": "Mobile number of the receiver. Should starts with 63.",
            "type": "number",
            "rules": [
              "required",
              "numeric",
              "digits:12"
            ]
          },
          {
            "name": "receiver.email",
            "text": "Email",
            "description": "Email address of the receiver. Optional field.",
            "type": "string",
            "rules": [
              "nullable",
              "email",
              "max:128"
            ]
          },
          {
            "name": "receiver.address",
            "text": "Address",
            "description": "Address of the receiver. Example: Lakambini Street.",
            "type": "string",
            "rules": [
              "required",
              "max:128"
            ]
          },
          {
            "name": "receiver.barangay",
            "text": "Barangay",
            "description": "Barangay of the receiver. Example: Barangay 168",
            "type": "string",
            "rules": [
              "required",
              "max:128"
            ]
          },
          {
            "name": "receiver.city",
            "text": "City/Municipality",
            "description": "City or punicipality of the receiver. Example: Manila City",
            "type": "string",
            "rules": [
              "required",
              "max:128"
            ]
          },
          {
            "name": "receiver.zip_code",
            "text": "Zip/Postal Code",
            "description": "Zip or postal code of the receiver. Example: 1006",
            "type": "string",
            "rules": [
              "required",
              "min:4",
              "max:4"
            ]
          },
          {
            "name": "receiver.gender",
            "text": "Gender",
            "description": "Gender of the receiver.",
            "type": "string",
            "rules": [
              "required",
              "in:MALE,FEMALE"
            ],
            "options": [
              {
                "label": "Male",
                "value": "MALE"
              },
              {
                "label": "Female",
                "value": "FEMALE"
              }
            ]
          }
        ]
      },
      {
        "name": "Maya",
        "slug": "maya",
        "code": "MAYA",
        "fee": {
          "fixed": 0,
          "percentage": 0,
          "type": "fixed",
          "responsible": "merchant"
        },
        "fields": [
          {
            "name": "string",
            "text": "string",
            "description": "string",
            "type": "string",
            "rules": [
              "string"
            ]
          }
        ]
      }
    ],
    "meta": {
      "current_page": 1,
      "from": 1,
      "last_page": 1,
      "per_page": 15,
      "to": 2,
      "total": 2
    }
  }
}
```

**SDK Code**

```python Disbursement API_Disbursement_Get Channels_example
import requests

url = "https://https/v1/api/disbursement/channels"

response = requests.get(url)

print(response.json())
```

```javascript Disbursement API_Disbursement_Get Channels_example
const url = 'https://https/v1/api/disbursement/channels';
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_Disbursement_Get Channels_example
package main

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

func main() {

	url := "https://https/v1/api/disbursement/channels"

	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_Disbursement_Get Channels_example
require 'uri'
require 'net/http'

url = URI("https://https/v1/api/disbursement/channels")

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_Disbursement_Get Channels_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

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

```php Disbursement API_Disbursement_Get Channels_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

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

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

```csharp Disbursement API_Disbursement_Get Channels_example
using RestSharp;

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

```swift Disbursement API_Disbursement_Get Channels_example
import Foundation

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