❤️
Padiwise
  • Introductions
  • Getting Started
    • Quickstart
    • Authentication
  • Compliance
  • Errors
  • Pricing
  • Account Information
  • Value Added Services
    • Bills Overview
    • Data Bundle
    • Cable TV
    • Airtime Topup
    • Validation
    • Smm Services
    • SMS Gateway API
  • COLLECTIONS
    • Collection Overview
    • Create Virtual Account
    • Webhook
  • DISBURSEMENT
    • Disbursement Overview
    • Get All Bank List
    • Create Transfer Recipients
    • Single Transfer
  • VIRTUAL CARDS
    • Cards Overview
    • Exchange Rate
    • Create Virtual Card
    • Get Cards
    • Get Card Details
    • Get Card Transactions
    • Fund Card
    • Withdraw Card
  • Help & Support
    • Changelog
Powered by GitBook
On this page
  1. VIRTUAL CARDS

Get Cards

Use this endpoint when building a wallet interface where the user needs to view all their existing cards.

PreviousCreate Virtual CardNextGet Card Details

Last updated 14 days ago

Fetches a list of all USD virtual cards created by the authenticated business account. Each card entry includes basic details such as last 4 digits, expiry date, current balance, and status. This endpoint is useful for displaying a user’s card overview in dashboards or reports.

Before you begin!

Fetches cards according to query parameters.

POST {{ BASE }}/get-cards

--header 'Accept: application/json'
--header 'Authorization: Bearer {{  access_token }}'

Below are the request body parameters

Request Body

{
    "success": true,
    "message": "All cards successfully fetched",
    "status_code": 200,
    "data": {
        "card_id": {{ card_id }},
        "maskedPan": {{ maskedPan }},
        "last4": {{ last4 }},
        "name": {{ name }},
        "brand": {{ brand }},
        "currency": {{ currency }},
        "status": {{ status }},
        }

🎉