🏦 Bank Routing Number Lookup avatar

🏦 Bank Routing Number Lookup

Try for free

2 hours trial then $19.99/month - No credit card required now

Go to Store
🏦 Bank Routing Number Lookup

🏦 Bank Routing Number Lookup

easyapi/bank-routing-number-lookup
Try for free

2 hours trial then $19.99/month - No credit card required now

Effortlessly retrieve and validate US bank information using routing numbers. Get comprehensive details including bank names, addresses, and institution information for ACH/WIRE transfers. Perfect for payment processing systems and financial data verification.

Developer
Maintained by Community

Actor Metrics

  • 5 monthly users

  • No reviews yet

  • No bookmarks yet

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 11 days ago

Easily retrieve detailed bank information using routing (ABA) numbers. This actor helps you validate and lookup US bank details through routing numbers, perfect for financial applications, payment processing, and banking data verification.

🎯 Use Cases

  • Validate bank routing numbers
  • Get detailed bank information for ACH/WIRE transfers
  • Verify financial institution details
  • Automate bank data collection
  • Payment processing systems integration

✨ Features

  • 🔍 Lookup bank details using routing numbers
  • ✅ Validates routing number format (9-digit check)
  • 🏢 Returns comprehensive bank information including:
    • Bank name
    • Physical address
    • Contact information
    • Institution type
    • Status and last update information
  • 💳 Supports both ACH and WIRE payment methods
  • ⚡ Built-in rate limiting to respect API constraints
  • 🛡️ Error handling and detailed logging

📊 Output

The actor returns structured data for each routing number, including:

  • Bank name and contact details
  • Complete address information
  • Institution type and status
  • Timestamp of data collection
  • Payment method context

🚀 Getting Started

  1. Create a new task
  2. Input your routing numbers
  3. Select payment method
  4. Run and get results!

📌 Limitations

  • Only supports US bank routing numbers
  • Requires valid 9-digit routing numbers
  • Includes 1-second delay between requests

💡 Input Configuration

Required input parameters:

  • routingNumbers: Array of routing numbers to process
  • paymentMethod: Payment type (ACH or WIRE)

Input Example

A full explanation of an input example in JSON.

1{
2    "routingNumbers": ["021000021", "026009593"],
3    "paymentMethod": "ACH"
4}

Output sample

The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

1[
2    {
3        "routingNumber": "021000021",
4        "paymentMethod": "ACH",
5        "scrapedAt": "2025-02-05T06:47:34.608Z",
6        "bankInfo": {
7            "name": "JPMORGAN CHASE",
8            "institution": {
9                "status": "Active",
10                "lastUpdate": null
11            }
12        }
13    },
14    ...
15]