> 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://api-stg.epaygames.io/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/payments-api/get-channels

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: payments
  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:
        - ''
      parameters:
        - name: Authorization
          in: header
          description: >-
            Bearer token obtained from the Create Token endpoint. Tokens are
            valid for ~60 minutes — cache and reuse a token for its full
            lifetime instead of re-authenticating per request.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Get Channels_Response_200'
        '401':
          description: Unauthorized — missing, invalid, or expired bearer token.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/GetV1BillerChannelsRequestUnauthorizedError
servers:
  - url: https://api.epaygames.io
    description: Production
  - url: https://api-stg.epaygames.io
    description: Staging/Sandbox
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
    Get Channels_Response_200:
      type: object
      properties:
        message:
          type: string
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/V1BillerChannelsGetResponsesContentApplicationJsonSchemaDataItems
      required:
        - message
        - data
      title: Get Channels_Response_200
    GetV1BillerChannelsRequestUnauthorizedError:
      type: object
      properties:
        message:
          type: string
      required:
        - message
      title: GetV1BillerChannelsRequestUnauthorizedError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer token obtained from the Create Token endpoint. Tokens are valid
        for ~60 minutes — cache and reuse a token for its full lifetime instead
        of re-authenticating per request.

```

## Examples



**Response**

```json
{
  "message": "",
  "data": [
    {
      "name": "Maya",
      "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 Get Channels_example
import requests

url = "https://api-stg.epaygames.io/v1/biller/channels"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript Get Channels_example
const url = 'https://api-stg.epaygames.io/v1/biller/channels';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

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

```go Get Channels_example
package main

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

func main() {

	url := "https://api-stg.epaygames.io/v1/biller/channels"

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

	req.Header.Add("Authorization", "Bearer <token>")

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

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

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

}
```

```ruby Get Channels_example
require 'uri'
require 'net/http'

url = URI("https://api-stg.epaygames.io/v1/biller/channels")

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

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

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

```java Get Channels_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api-stg.epaygames.io/v1/biller/channels")
  .header("Authorization", "Bearer <token>")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api-stg.epaygames.io/v1/biller/channels', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

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

```csharp Get Channels_example
using RestSharp;

var client = new RestClient("https://api-stg.epaygames.io/v1/biller/channels");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift Get Channels_example
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api-stg.epaygames.io/v1/biller/channels")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

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()
```