JPMORGAN CHASE BANK, N.A.
Description
SWIFT/BIC Codes Details
SWIFT Code Breakdown
Code Structure
Bank Code
First 4 characters
Unique identifier for JPMORGAN CHASE BANK, N.A.
Country Code
Characters 5-6
ISO 3166-1 alpha-2 country code
United States of America
Location Code
Characters 7-8
City or geographical location code
Branch Code
Optional - Not specified
No branch code specified - refers to head office
About SWIFT/BIC Codes
SWIFT (Society for Worldwide Interbank Financial Telecommunication) codes are used to identify banks and financial institutions globally.
BIC (Bank Identifier Code) is another name for the same code format.
These codes can be either 8 or 11 characters long:
- 8 characters: Refers to the primary office of the bank
- 11 characters: Refers to a specific branch of the bank
Bank Verification
- Bank Name: JPMorgan Chase Bank, N.A.
- Country: United States (US)
- City: New York, NY
- Branch: Head Office
- Address: 270 Park Avenue, New York, NY 10017
- Verification Status: Active and verified SWIFT participant
- Services: Full range of international banking services
Payment System Integration
STRIPE
```javascript // Stripe integration with JPMorgan Chase const stripe = require("stripe")("sk_test_..."); async function createACHTransfer(recipientData) { try { // Create external account (bank account) const account = await stripe.accounts.create({ type: "custom", country: "US", email: recipientData.email, capabilities: { transfers: {requested: true} } }); // Add bank account const bankAccount = await stripe.accounts.createExternalAccount( account.id, { external_account: { object: "bank_account", country: "US", currency: "usd", routing_number: "021000021", // Chase routing account_number: recipientData.accountNumber, account_holder_type: "individual" } } ); // Create transfer const transfer = await stripe.transfers.create({ amount: recipientData.amount * 100, // Convert to cents currency: "usd", destination: account.id, description: "Wire transfer via Chase" }); return { success: true, transferId: transfer.id, accountId: account.id }; } catch (error) { return { success: false, error: error.message }; } } // Usage const result = await createACHTransfer({ email: "recipient@example.com", accountNumber: "123456789", amount: 1000.00 }); ```Was this helpful?
Send Feedback
Found an error or have a suggestion? We respond within 48 hours.
Fact-checking completed
Official Sources
Society for Worldwide Interbank Financial Telecommunication
Official SWIFT Business Identifier Codes directory
Global financial messaging network operator
International Organization for Standardization
International standard for Business Identifier Codes
International standard for bank identification
Learn More
Dive deeper with our comprehensive developer guides for SWIFT/BIC Codes
Related Codes
More codes of the same type