Skip to main content
POST
/
v1
/
billing
/
topup
Topup Balance
curl --request POST \
  --url https://api.faces.sh/v1/billing/topup \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount_usd": 123,
  "payment_ref": "<string>"
}
'
{
  "success": true,
  "new_balance_usd": 123,
  "frozen": true
}

Headers

authorization
string | null

Body

application/json
amount_usd
number
required
payment_ref
string | null

Response

Successful Response

success
boolean
required
new_balance_usd
number
required
frozen
boolean
required