Payoneer is a global payment platform that helps businesses, freelancers, and online sellers to send and receive money internationally. Its main purpose is to make cross-border commerce simple, like doing business locally. The platform provides a multi-currency account that allows users to get paid by international clients and marketplaces as if they had a local bank account in many countries. Payoneer was founded in 2005 and has its headquarters in New York City, USA. It serves millions of users in over 190 countries and is a popular choice for professionals on platforms like Upwork, Fiverr, and Amazon.
Payoneer offers a set of tools designed for global business transactions. Here are its main features:
Payoneer does not have traditional monthly subscription plans. Instead, its pricing is based on transaction fees. The cost depends on the type of transaction you are making. Here is a general breakdown:
Registering for a Payoneer account is free. There is no monthly fee for maintaining the account as long as you use it. However, there is an annual account fee of $29.95 if you do not have any transactions in your account or on your card for 12 months. For active users who regularly receive or send payments, the account is effectively free to maintain, but transaction fees will apply for using the services.
Getting started with Payoneer is a simple process. Here are the typical steps:
Pros:
Cons:
Payoneer is well-known for its extensive integrations, especially with global marketplaces and platforms. This allows for seamless payment processing directly into a user's Payoneer account.
Yes, Payoneer provides a set of APIs for businesses and marketplaces. The Payoneer API allows for the automation of global payouts, making it possible to pay suppliers, freelancers, and partners around the world programmatically. This is mainly for businesses that need to make mass payments.
To get access to the API, you need a Payoneer business account and must apply for API access through their developer portal. It is not available for individual accounts. Once approved, you will receive API credentials (client ID and secret) to authenticate your requests.
Here is a conceptual example in Python of how you might use the API to initiate a payout:
import requests
import json
# This is a conceptual example. Actual implementation will vary.
api_url = "https://api.payoneer.com/v4/payouts"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Content-Type": "application/json"
}
payout_data = {
"payments": [
{
"client_reference_id": "payment_001",
"payee_id": "payee_email@example.com",
"amount": "150.00",
"currency": "USD",
"description": "Payment for design services"
}
]
}
response = requests.post(api_url, headers=headers, data=json.dumps(payout_data))
print(response.status_code)
print(response.json())
For detailed documentation, visit the Payoneer for Developers portal.
Payoneer has a "Refer a Friend" program, which works like an affiliate program. It is available to all Payoneer account holders.
Show your users that Payoneer is listed on SAASprofile. Add this badge to your website:
<a href="https://saasprofile.com/payoneer?utm_source=saasprofile&utm_medium=badge&utm_campaign=embed&utm_content=tool-payoneer" target="_blank"><img src="https://saasprofile.com/payoneer/badge.svg?theme=light&width=200&height=50" width="200" height="50" alt="Payoneer badge" loading="lazy" /></a>