Docs

Welcome

API documentation

Browse our documentation and guides to integrate SolFi. We help you connect payments, transfers and payouts quickly and reliably across mobile money and banking rails.

Explore the API

SolFi is a server-to-server REST API — no SDK to install. Pick a guide below to get started.

Your first transfer

POST /transactions/transfer
curl -X POST "https://api.katika-bridge.com/transactions/transfer" \
  -H "x-api-key: your_api_key_here" \
  -H "x-api-secret: your_api_secret_here" \
  -H "Content-Type: application/json" \
  -d '{
    "paymentMethod": "mobile_money",
    "amount": 10000,
    "externalId": "550e8400-e29b-41d4-a716-446655440000",
    "country": "CM",
    "walletNumber": "237690000000",
    "provider": "Orange_CM",
    "callbackUrl": "https://example.com/callback",
    "recipient": { "firstName": "John", "lastName": "Doe" }
  }'