Virtual Cards API Playground
Send real, HMAC-signed requests to the virtual cards endpoints and inspect the live response.
POST/api/cards
cURL
- curl --location --request POST 'https://api.bitnob.com/api/cards' \
- --header 'Content-Type: application/json' \
- --header 'X-Auth-Client: {{clientId}}' \
- --header 'X-Auth-Timestamp: {{timestamp}}' \
- --header 'X-Auth-Nonce: {{nonce}}' \
- --header 'X-Auth-Signature: {{signature}}' \
- --data '{
- "card_type": "virtual",
- "currency": "USD",
- "name": "Chinedu Okafor",
- "amount": 2000000,
- "card_brand": "visa",
- "reference": "CARD_CREATE_3e096ff5-0c94-4653-adcc-b232676c84e7",
- "customer": {
- "customer_type": "individual",
- "first_name": "Ifeoma",
- "last_name": "Okafor",
- "email": "ifeoma.okafor@example.com",
- "phone_number": "8034567890",
- "dial_code": "+234",
- "date_of_birth": "1993-07-08",
- "id_type": "national_id",
- "id_number": "NIN12345678901",
- "line1": "18 Wuse Zone 4",
- "city": "Abuja",
- "state": "FCT",
- "postal_code": "900271",
- "country": "NGA"
- },
- "card_limits": {
- "transaction_limit": 19200000000,
- "daily_limit": 300000000,
- "weekly_limit": 6300000000,
- "monthly_limit": 3000000,
- "yearly_limit": 5100000000,
- "all_time_limit": 360000000
- }
- }'
Response
// Awaiting response...