Making Your First Request

Example: Check Wallet Balance

curl -X GET "https://api.monei.cc/api/v1/wallet/me" \
  -H "X-API-KEY: your_api_key_here"

Successful Response (200 OK)

{
  "status": "success",
  "data": {
    "walletId": "wal_123xyz",
    "balances": [
      {
        "currency": "NGN",
        "available": 25000.50,
        "locked": 0.00
      }
    ]
  }
}

Last updated