Tazapay

Commercial

by Tazapay Pte Ltd

Singapore-headquartered cross-border payments platform (MAS-regulated) offering checkout, collections, payouts, FX and escrow-style trade protection via a REST API. Live and sandbox environments are fully separated, with self-serve test keys and API-driven money movement for international B2B trade.

How to authenticate

  1. 1Sign up and log in to the sandbox dashboard (dashboard-sandbox.tazapay.com) to generate test API_Key and API_Secret; live keys come from dashboard.tazapay.com after clearing KYB.
  2. 2Combine them as API_Key:API_Secret (Basic Auth username:password format).
  3. 3Base64-encode the combined string.
  4. 4Send it on every request as 'Authorization: Basic <base64 value>' over HTTPS (HTTP requests fail).
  5. 5Point requests at https://service-sandbox.tazapay.com for test mode and https://service.tazapay.com for live; switch keys and endpoint together.

Example request

Request
curl -X GET 'https://service-sandbox.tazapay.com/v3/balance' -H 'Authorization: Basic RjJXN0g4SldNTzgzOThLQVBXODU6cktIRkFmZkxxNUxucm1zM21PQlFpNzFvUW1NQVRIMkVCeVlEeUlSMldkMGpHZEtlZWQwOFdUaEdWUzZ2MTI1Nw=='

Example response

Response (truncated)
{"status":"success","data":{"available":[{"currency":"SGD","amount":0}]}}

Notes for AI agents

Sandbox is self-serve, but real money movement, document verification and KYB only exist in live mode; Tazapay can mock success/failure responses in sandbox on request (support@tazapay.com). SG-HQ and useful for SGD + cross-border B2B collection/payout flows.

Machine-readable version: /api/apis/tazapay

Related APIs