Skip to main content
POST
/
virtual-cards
/
{id}
/
fund
Fund a Virtual Card
curl --request POST \
  --url https://api.flutterwave.com/v3/virtual-cards/{id}/fund \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "debit_currency": "USD",
  "amount": "5"
}
'
{
  "status": "success",
  "message": "Card funded successfully",
  "data": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
debit_currency
string
required
amount
string
required

Response

200 - application/json; charset=utf-8

OK

status
string
required
message
string
required
data
string | null
required