Skip to main content

Get started with meCash API in 4 steps

Follow this quickstart guide to integrate meCash API into your application.

Step 1: Create Your Account

  1. Visit meCash Business
  2. Click Sign Up and complete the registration form
  3. Verify your email address
  4. Complete KYB (Know Your Business) verification
KYB verification is required to access API services.
Submit the required documents:
  • Business registration certificate
  • Valid ID of business director
  • Proof of address
Your API access will be enabled after KYB approval.

Step 2: Get Your API Keys

  1. Log into your meCash Business dashboard
  2. Navigate to Developer section
  3. Click Create a Key in the API Keys section
  4. Copy and securely store your API key
Keep your API key secure and never share it publicly.
  • Production: https://api.me-cash.com - For live transactions
  • Sandbox: https://sandboxapi.me-cash.com - For testing and development
Use sandbox for testing your integration before going live.

Step 3: Configure Security

  1. Go to Developer section in your dashboard
  2. Navigate to IP Whitelisting
  3. Add your server’s IP addresses
  4. Save the configuration
API calls will be rejected from non-whitelisted IPs.

Step 4: Make Your First API Call

Try this simple request to test your setup:
# Test with sandbox environment
curl -X GET "https://sandboxapi.me-cash.com/v1/wallets" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Replace YOUR_SANDBOX_API_KEY with your sandbox API key. Use sandbox for testing!

Next steps

Now that you have basic setup complete, explore these key features:
Need help? Contact us at support@me-cash.com or join our Discord community.
I