Create a new virtual card

Post https://app.moneygraph.ai/api/v1/card/create-card/{customer}

Headers

Authorization* string

Pass your {api_key} as a bearer token in the request header to authorize this call

Path parameters

customer* string

Customer ID. The ID or MCP Key of the onboarded customer.

Body parameters

currency* string

Currency code in ISO 4217 format (3-letter code such as USD). The selected currency must be USD.

Response


{
    "message": "Card details processing",
    "status": "success",
    "data": {
        "id": "9f948ebc-af9c-44c0-8f98-3545386413a7",
        "amount": "0.00",
        "card_details": null,
        "created": "2025-08-07T21:59:47.000000Z",
        "currency": "USD",
        "mode": "live",
        "status": "active",
        "billing_address":{
            "city": "San Francisco",
            "country": "USA",
            "addressLine1": "123 Main St",
            "addressLine2": "123 Main St",
            "postalCode": "94104",
            "state": "CA"
        }
    }
}