Skip to main content
GET
/
api
/
v1
/
banks
List Banks
curl --request GET \
  --url https://pay-api.holdstation.com/api/v1/banks
{
  "message": "success",
  "data": {
    "banks": [
      {
        "id": 1,
        "bank_name": "Vietcombank",
        "short_name": "VCB",
        "bin_code": "970436",
        "image": "https://example.com/vcb.png",
        "created_at": { "seconds": 1700000000, "nanos": 0 },
        "updated_at": { "seconds": 1700000000, "nanos": 0 }
      }
    ],
    "page": 1,
    "page_size": 20,
    "total_count": 50
  }
}

Documentation Index

Fetch the complete documentation index at: https://pay-docs.holdstation.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Partners can retrieve the list of banks supported for fiat withdrawals. This endpoint is publicly accessible and does not require authentication.
page
integer
Page number for pagination.
size
integer
Number of results per page.
ids
integer[]
Filter by specific bank IDs.
{
  "message": "success",
  "data": {
    "banks": [
      {
        "id": 1,
        "bank_name": "Vietcombank",
        "short_name": "VCB",
        "bin_code": "970436",
        "image": "https://example.com/vcb.png",
        "created_at": { "seconds": 1700000000, "nanos": 0 },
        "updated_at": { "seconds": 1700000000, "nanos": 0 }
      }
    ],
    "page": 1,
    "page_size": 20,
    "total_count": 50
  }
}