# Get Bank Branches

This helps you get the bank branches, pass the id of the bank. Click here to get bank ids

# Sample

<?php

$bankId = 191;
$branches = Flutterwave::banks()->branches($bankId);

dd($branches);

1
2
3
4
5
6
7