> 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/biller/channels

### Get Channels

The **Get Channels** endpoint retrieves a list of all available payment channels associated with your credentials. Each channel includes relevant details such as its **logo**, **name**, and **payment instructions**, which you can use to provide clear information to your customer before redirecting them to the payment flow.

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

## OpenAPI Specification

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


        The **Get Channels** endpoint retrieves a list of all available payment
        channels associated with your credentials. Each channel includes
        relevant details such as its **logo**, **name**, and **payment
        instructions**, which you can use to provide clear information to your
        customer before redirecting them to the payment flow.
      tags:
        - paymentsApi
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Payments API_Get Channels_Response_200'
servers:
  - url: https:/
    description: https://{payments_api_host}
components:
  schemas:
    V1BillerChannelsGetResponsesContentApplicationJsonSchemaDataItemsCurrenciesItems:
      type: object
      properties:
        name:
          type: string
        code:
          type: string
        symbol:
          type: string
      required:
        - name
        - code
        - symbol
      title: >-
        V1BillerChannelsGetResponsesContentApplicationJsonSchemaDataItemsCurrenciesItems
    V1BillerChannelsGetResponsesContentApplicationJsonSchemaDataItemsCategory:
      type: object
      properties:
        name:
          type: string
        description:
          type: string
        slug:
          type: string
      required:
        - name
        - description
        - slug
      title: >-
        V1BillerChannelsGetResponsesContentApplicationJsonSchemaDataItemsCategory
    V1BillerChannelsGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        name:
          type: string
        description:
          description: Any type
        slug:
          type: string
        code:
          type: string
        logo:
          type: string
          format: uri
        is_web_payment:
          type: boolean
        is_disabled:
          type: boolean
        currencies:
          type: array
          items:
            $ref: >-
              #/components/schemas/V1BillerChannelsGetResponsesContentApplicationJsonSchemaDataItemsCurrenciesItems
        category:
          $ref: >-
            #/components/schemas/V1BillerChannelsGetResponsesContentApplicationJsonSchemaDataItemsCategory
      required:
        - name
        - slug
        - code
        - logo
        - is_web_payment
        - is_disabled
        - currencies
        - category
      title: V1BillerChannelsGetResponsesContentApplicationJsonSchemaDataItems
    Payments API_Get Channels_Response_200:
      type: object
      properties:
        message:
          type: string
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/V1BillerChannelsGetResponsesContentApplicationJsonSchemaDataItems
      required:
        - message
        - data
      title: Payments API_Get Channels_Response_200

```

## Examples



**Response**

```json
{
  "message": "",
  "data": [
    {
      "name": "PayMaya",
      "slug": "paymaya",
      "code": "PAYMAYA_QR",
      "logo": "https://cdn.eplayment.co/payment-channels/paymaya.jpg",
      "is_web_payment": true,
      "is_disabled": false,
      "currencies": [
        {
          "name": "Philippine Peso",
          "code": "PHP",
          "symbol": "₱"
        }
      ],
      "category": {
        "name": "E-Wallet",
        "description": "E-Wallet payment channels.",
        "slug": "e-wallet"
      }
    },
    {
      "name": "GCash",
      "slug": "gcash-trn",
      "code": "GCASH_TRN",
      "logo": "https://cdn.eplayment.co/payment-channels/gcash.png",
      "is_web_payment": true,
      "is_disabled": false,
      "currencies": [
        {
          "name": "Philippine Peso",
          "code": "PHP",
          "symbol": "₱"
        }
      ],
      "category": {
        "name": "E-Wallet",
        "description": "E-Wallet payment channels.",
        "slug": "e-wallet"
      }
    },
    {
      "name": "Bayad",
      "slug": "bayad",
      "code": "BAYAD",
      "logo": "https://cdn.eplayment.co/payment-channels/bayad.png",
      "is_web_payment": false,
      "is_disabled": false,
      "currencies": [
        {
          "name": "Philippine Peso",
          "code": "PHP",
          "symbol": "₱"
        }
      ],
      "category": {
        "name": "OTC",
        "description": "Over-the-counter payment channels.",
        "slug": "otc"
      }
    },
    {
      "name": "Eplayment",
      "slug": "eplayment",
      "code": "EPLAYMENT",
      "logo": "https://cdn.eplayment.co/payment-channels/eplayment.png",
      "is_web_payment": true,
      "is_disabled": false,
      "currencies": [
        {
          "name": "Philippine Peso",
          "code": "PHP",
          "symbol": "₱"
        }
      ],
      "category": {
        "name": "E-Wallet",
        "description": "E-Wallet payment channels.",
        "slug": "e-wallet"
      }
    }
  ]
}
```

**SDK Code**

```python Payments API_Get Channels_example
import requests

url = "https://https/v1/biller/channels"

response = requests.get(url)

print(response.json())
```

```javascript Payments API_Get Channels_example
const url = 'https://https/v1/biller/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 Payments API_Get Channels_example
package main

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

func main() {

	url := "https://https/v1/biller/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 Payments API_Get Channels_example
require 'uri'
require 'net/http'

url = URI("https://https/v1/biller/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 Payments API_Get Channels_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

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

```php Payments API_Get Channels_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

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

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

```csharp Payments API_Get Channels_example
using RestSharp;

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

```swift Payments API_Get Channels_example
import Foundation

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