OuiPay
Getting Started

API Credentials

Obtain and manage your API keys for sandbox and production environments.

To make API requests to OuiPay, you need an API key pair. Each key pair consists of a public publishable key (for client-side SDKs or web widgets) and a secret key (for server-side REST API calls).

Key types

Key TypePrefixEnvironmentLocation
Sandbox Secret Keysk_test_SandboxServer-side only
Sandbox Public Keypk_test_SandboxClient-side & web
Live Secret Keysk_live_LiveServer-side only
Live Public Keypk_live_LiveClient-side & web

Obtaining your keys

  1. Log into your OuiPay Dashboard.
  2. Navigate to Developer Settings > API Keys.
  3. Copy your Sandbox Secret Key (sk_test_...) for integration testing.

Security guidelines

  • Keep secret keys private: Never commit secret keys to public repositories or include them in client-side code (web browsers, mobile apps).
  • Rotate compromised keys immediately: If a secret key is exposed, revoke it from the Dashboard and generate a replacement key pair.
  • Environment isolation: Sandbox keys cannot perform real transactions or access live balances. Live keys cannot be used against sandbox URLs.

On this page