Skip to content
Abraham Olaobaju edited this page Aug 23, 2023 · 2 revisions

Overview

This resource describes how to get bank details for all Banks in the specified Country.

Get all Banks

This returns all the Banks information in a country.

use Flutterwave\Service\Banks;

$service = new Banks();
$response = $service->getByCountry("NG");
print_r($response);

Get Bank Branches

This describes how to get bank branch details for the specified Bank.

use Flutterwave\Service\Banks;

$service = new Banks();
$response = $service->getBranches("280");
print_r($response);
Clone this wiki locally