Verified directory record

BOFAPH2X BIC/SWIFT code

Identify BANK OF AMERICA, N.A. MANILA in Manila, Philippines, and understand every part of this bank identifier.

  • Directory record found
  • Primary office
  • Manila
BIC/SWIFT record
BOFAPH2X

BANK OF AMERICA, N.A. MANILA

PH Country
XXX Branch
Record overview

Institution and branch details

Financial institution
BANK OF AMERICA, N.A. MANILA
Branch
Primary office
City
Manila
Country
Philippines (PH)
Address
8767 PASEO DE ROXAS, MAKATI CITY, METRO MANILA, PHILAMLIFE TOWER BLDG, FLOOR 27
Code anatomy

What does BOFAPH2X mean?

A BIC is built from an institution code, country code, location code and an optional branch code.

BOFA 01

Institution code

Identifies BANK OF AMERICA, N.A. MANILA.

PH 02

Country code

ISO code for Philippines.

2X 03

Location code

Identifies the institution’s location.

XXX 04

Branch code

Omitted or XXX indicates the primary office.

Built for developers

Validate BOFAPH2X
through the API

Retrieve this BIC as structured JSON for onboarding, payment routing or data-quality workflows.

curl 'https://api.fincodesapi.com/v2/bic/BOFAPH2X' \
    --header 'X-Api-Key: your-api-key-here' \
    --header 'Accept: application/json'
# INSTALLATION
$ composer require guzzlehttp/guzzle
# REQUEST
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.fincodesapi.com/v2/bic/BOFAPH2X', [
    'headers' => [
        'Accept' => 'application/json',
        'X-Api-Key' => 'your-api-key-here',
    ],
]);

echo $response->getBody();
# INSTALLATION
$ python -m pip install requests
# REQUEST
import requests

url = "https://api.fincodesapi.com/v2/bic/BOFAPH2X"

headers = {
    "Accept": "application/json",
    "X-Api-Key": "your-api-key-here"
}

response = requests.request("GET", url, headers=headers)

print(response.text)
# INSTALLATION
$ npm install node-fetch --save
// REQUEST
import fetch from 'node-fetch';

const url = 'https://api.fincodesapi.com/v2/bic/BOFAPH2X';
const options = {
  method: 'GET',
  headers: {
    'Accept': 'application/json',
    'X-Api-Key': 'your-api-key-here'
  }
};

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error('error:' + err));
const options = {
  method: 'GET',
  headers: {
    'Accept': 'application/json',
    'X-Api-Key': 'your-api-key-here'
  }
};

fetch('https://api.fincodesapi.com/v2/bic/BOFAPH2X', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));