Project HermesHermes Docs

Fund Wallet

Add funds to your wallet via Stripe

Fund Wallet

Creates a Stripe checkout session to add funds to your wallet.

  • amountCents (integer) (required) — Amount in cents (e.g., 5000 = $50.00)
curl -X POST https://api.hermes.camie.ai/wallet/fund \
  -H "Authorization: Bearer hermes_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{ "amountCents": 5000 }'

Response

{
  "success": true,
  "data": {
    "checkoutUrl": "https://checkout.stripe.com/...",
    "sessionId": "cs_..."
  }
}

📝 Note: After payment, funds are added automatically via Stripe webhook. Use Verify Payment to confirm.

On this page