Getting Started with Kang Open Banking API

Make your first API call to the Kang Open Banking API in under 5 minutes. Free sandbox, no signup required. cURL, Node.js, Python, PHP, Go, and Java examples.

Quick Start Guide

Get your sandbox API key and make your first API call in under 5 minutes. No signup required.

Step 1: Get Your Sandbox Key

Use the instant key generator on this page or use the default test key: sk_test_kob_sandbox_demo_key_2024

Step 2: Make Your First API Call

curl -X GET https://YOUR_PROJECT.supabase.co/functions/v1/api-health \
  -H "Authorization: Bearer sk_test_kob_sandbox_demo_key_2024"

Step 3: Try a Payment

curl -X POST https://YOUR_PROJECT.supabase.co/functions/v1/gateway-charges-router \
  -H "Authorization: Bearer sk_test_kob_sandbox_demo_key_2024" \
  -H "Content-Type: application/json" \
  -d '{"amount":5000,"currency":"XAF","method":"momo","phone":"+237670000000"}'

Available SDKs

Base URL: https://YOUR_PROJECT.supabase.co/functions/v1