CyberCard — Virtual Cards API
/card/* (Service API)
Create and manage virtual credit cards, top up with cryptocurrency, and use them for online purchases.
Create Virtual Card
POST /card/get-card
{
"wallet": "0xYourWallet...",
"amount": 100
}| Field | Type | Description |
|---|---|---|
wallet | string | Wallet address |
amount | number | Top-up amount (USD) |
Response
Returns card information (card number, CVV, expiration date, etc.).
Query Card Details
GET /card/card-data?card_id={id}
| Parameter | Type | Description |
|---|---|---|
card_id | string | Required, card ID |
List My Cards
GET /card/my-cards?wallet={address}
| Parameter | Type | Description |
|---|---|---|
wallet | string | Required, wallet address |
Returns all virtual cards associated with the wallet.
