CHASUS33

JPMORGAN CHASE BANK, N.A.

Description

SWIFT/BIC code for JPMORGAN CHASE BANK, N.A.. Bank address: NEW YORK PLAZA 4 FLOOR 15 NEW YORK,NY NEW YORK,NY 10004 UNITED STATES OF AMERICA

SWIFT/BIC Codes Details

SWIFT/BIC Code
CHASUS33
Bank Name
JPMORGAN CHASE BANK, N.A.
Bank Address
NEW YORK PLAZA 4 FLOOR 15 NEW YORK,NY NEW YORK,NY 10004 UNITED STATES OF AMERICA
Country
United States of America

SWIFT Code Breakdown

Code Structure

CHAS US 33
1

Bank Code

First 4 characters

CHAS

Unique identifier for JPMORGAN CHASE BANK, N.A.

2

Country Code

Characters 5-6

US

ISO 3166-1 alpha-2 country code
United States of America

3

Location Code

Characters 7-8

33

City or geographical location code

4

Branch Code

Optional - Not specified

XXX

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?

Loading...

Send Feedback

Found an error or have a suggestion? We respond within 48 hours.

Fact-checking completed

Verified by: Pavel Volkov
Created:
Last updated:
Information verified against official sources

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