VE BankingDeveloper guide
API reference
Browse documentation

Supported bank codes

Load the current bank catalog and use its codes in payment requests.

List banks

GET /v1/banks returns the supported bank catalog. Each result includes code, name, and services. Build selectors from this response instead of hard-coding the list.

curlbash
curl "${API_URL}/v1/banks" \
  --header "x-api-key: ${VE_BANKING_API_KEY}"
Response shapejson
[
  {
    "code": "0102",
    "name": "Banco de Venezuela",
    "services": []
  }
]