Get started with OLIVE integration
git clone https://github.com/EmmanuelKeifala/olive.git cd olive docker compose up -d --build gateway wallet-core agent
curl http://localhost:8080/health
curl -X GET "http://localhost:8080/api/v1/balance/user123" \ -H "Authorization: Bearer YOUR_API_KEY"
curl -X POST "http://localhost:8080/api/v1/payments" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "user_id": "user123", "recipient": "user456", "amount": 5000, "currency": "SLE" }'