Skip to content

Banks

Allows viewing the list of associated banks.

Base URL: https://app.payku.cl/ (Production) · https://des.payku.cl/ (Sandbox)
GET/api/banks?currency=ves

This method allows you to retrieve a list of associated banks filtered by currency. To filter by currency, add the query parameter currency with the currency value.

curl -X GET \
https://BASE-URL/api/banks?currency=ves \
-H 'Accept: application/json, text/plain, */*' \
-H 'Content-Type: application/json' \
-H 'Host: BASE-URL'

Responses

200
{
"status": "success",
"banks": [
{
"code": "0102",
"name": "Banco de Venezuela",
"currency": "VES"
}
]
}
Response fields
ParameterTypeDescription
status string

Status of the endpoint. The possible statuses that can be obtained are the following:

  • success
Example: success
banks array of objects
Example: [{"code":"0102","name":"Banco de Venezuela","currency":"VES"}]
code string

Bank code of the bank to which the bank account belongs.

Example: Banco de Venezuela
name string

Name of bank.

Example: Banco de Venezuela
currency string

Currency

Example: VES