EcheckPlan is a financial technology company that provides electronic check (eCheck) payment processing solutions for businesses across the United States. Its main purpose is to allow merchants to accept payments directly from a customer's bank account through the Automated Clearing House (ACH) network. This serves as an alternative to traditional credit card payments. The company, based in Florida, USA, caters to a wide range of businesses, from small startups to large enterprises, including those in high-risk industries that may have difficulty securing traditional merchant accounts. EcheckPlan also offers unique services like business incorporation for international entrepreneurs looking to establish a presence in the U.S.
EcheckPlan offers a set of features designed to make eCheck processing simple and secure for businesses.
EcheckPlan follows a transaction-based pricing model rather than fixed monthly subscription tiers. There are no setup fees or recurring monthly charges to maintain an account. The cost is based on the transactions processed. The rates are competitive and vary depending on factors such as business type, transaction volume, and industry risk level. Businesses in high-risk categories may have different rates than standard small businesses. This custom pricing approach ensures that merchants pay fees that are aligned with their specific business needs and scale.
EcheckPlan does not have a traditional free plan, but it operates on a model that is free to set up. Businesses can create an account, integrate the payment gateway, and get approved without any upfront costs. Charges are only incurred when a payment is processed. This makes it a low-risk option for businesses of all sizes, as there are no monthly fees for account maintenance, regardless of transaction volume.
Getting started with EcheckPlan is a straightforward process designed for quick onboarding.
Pros:
Cons:
EcheckPlan primarily integrates with other platforms through its API. This allows for custom integrations with a wide variety of systems. Common integrations include:
Yes, EcheckPlan provides a developer API to integrate its payment processing capabilities directly into websites, mobile apps, and other software. To get started, you must first sign up for an EcheckPlan merchant account. Once your account is approved, you can access your API keys from the merchant dashboard. These keys are used to authenticate requests and secure the connection between your application and EcheckPlan's servers.
Here is a conceptual example of what an API call to initiate a payment might look like in Python:
import requests
import json
api_key = 'YOUR_API_KEY'
api_url = 'https://api.echeckplan.com/v1/charges'
headers = {
'Authorization': f'Bearer {api_key}',
'Content-Type': 'application/json'
}
payment_data = {
'amount': 10000, # Amount in cents
'currency': 'usd',
'customer_name': 'John Doe',
'routing_number': '123456789',
'account_number': '987654321',
'account_type': 'checking'
}
response = requests.post(api_url, headers=headers, data=json.dumps(payment_data))
if response.status_code == 200:
print('Payment successful:', response.json())
else:
print('Payment failed:', response.text)
For detailed documentation and support, developers should refer to the official API documentation provided by EcheckPlan after signing up.
EcheckPlan offers a partnership and affiliate program for individuals or businesses that refer new merchants to their platform. Affiliates can earn commissions for every successful referral that signs up and starts processing payments. The commission structure is typically based on a revenue-sharing model, where the affiliate earns a percentage of the transaction fees generated by the referred merchant.
To join the program, you would typically need to visit the EcheckPlan website and look for a "Partners" or "Affiliates" page to fill out an application. If this information is not readily available, interested parties can contact their support team directly to inquire about becoming a partner. Once approved, affiliates receive a unique referral link and access to a dashboard to track their referrals and earnings. Payments are usually made on a regular schedule, such as monthly.
Show your users that eCheckPlan is listed on SAASprofile. Add this badge to your website:
<a href="https://saasprofile.com/echeckplan?utm_source=saasprofile&utm_medium=badge&utm_campaign=embed&utm_content=tool-echeckplan" target="_blank"><img src="https://saasprofile.com/echeckplan/badge.svg?theme=light&width=200&height=50" width="200" height="50" alt="eCheckPlan badge" loading="lazy" /></a>