Partner API
  1. Virtual Cards
Partner API
  • Getting Started
    • Introduction
    • Authentication
    • Business Use Cases
  • API References
    • Partner Operations
      • Get Balances
      • Get Transaction History
      • Retrieve Exchange Rate and Create a Lock
      • Create and Finalize an Exchange
      • Create Crypto Withdrawal
      • Create a SEPA Transfer
      • Get SEPA Transfer Details
    • User Accounts with KYC
      • Create User Account and Generate Balances
      • Add KYC File
      • Add POA File
      • Add User Verification
      • Update Existing User
      • Delete User
      • Suspend User
      • Unsuspend User
      • Get User Balances
      • Get User Transaction History
    • User Accounts without KYC
      • Create User Account and Generate Balances Without KYC
      • Update Existing User
      • Delete User
      • Suspend User
      • Unsuspend User
      • Get User Balances
      • Get User Transaction History
    • KYC by P100
      • Creating KYC Verification
      • Redirect to Verification
      • Get KYC Status
    • Currency Exchange
      • Retrieve Exchange Rate
      • Retrieve Exchange Rate and Create a Lock
      • Create and Finalize an Exchange
      • Retrieve Detailed Exchange Infromation
    • Crypto Deposits
      • Update Travel Rule
    • Crypto Withdrawals
      • Get Network Fee
      • Create Crypto Withdrawal
      • Get Crypto Withdrawal Details
    • Internal Transfers
      • Create a Transfer
      • Get Transfer Details
    • Virtual Cards
      • Create Virtual Card
        POST
      • Get All User Cards
        GET
      • Get Card Details
        GET
      • Update Card PIN
        PATCH
      • Block Card
        PATCH
      • Unblock Card
        PATCH
      • Get Card Limits
        GET
      • Update Card Limits
        PATCH
      • Delete Card
        DELETE
    • Custom Fiat Operations
      • SEPA Deposit & Withdrawal
  • Integration
    • SDKs & Integration Guides
    • Transaction Processing
    • Error Handling
    • Rate Limiting
    • Webhooks
      • User & KYC Webhooks
        • User Balance Generation
        • KYC File Added
        • POA Verification Status
        • KYC Verification Status
      • Transfers & Payments Webhooks
        • P2P Transfer Webhook
        • SEPA Transfer
        • SEPA Deposit
        • Crypto Withdrawal
        • Crypto Deposit
        • Exchange
        • Card Transaction
      • Card Webhooks
        • Card 3DS Code
        • Card Activation Code
  • Reference
    • Supported Countries
    • Supported Currencies
    • Fees
    • FAQ
    • Changelog
    • Support
  1. Virtual Cards

Get All User Cards

Testing Env
https://partner-api-stage.p100.io
Testing Env
https://partner-api-stage.p100.io
GET
/v1/card/all/{externalUserId}
This endpoint returns a list of all virtual cards belonging to a specific user. Use this endpoint to retrieve an overview of every card (active or locked) associated with the given user in your system. The response includes basic information for each card, such as its unique ID, status, label, and the last four digits of the card number. This is useful for displaying a user's cards in your application, managing card actions, or auditing card usage.
Card Statuses
ACTIVE: Card is active and can be used for transactions.
LOCKED_BY_USER: Card is blocked by the user and cannot be used.
DELETED: Card has been deleted and is no longer available for any operations.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://partner-api-stage.p100.io/v1/card/all/' \
--header 'x-api-key;'
Response Response Example
200 - Success
[
    {
        "id": "7d5177c0-e6c9-4a94-82b6-aa1162b51986",
        "status": "ACTIVE",
        "label": "Business",
        "cardLastDigits": "3276",
        "createdAt": "2025-06-11T09:43:53+00:00"
    },
    {
        "id": "8a5a2672-5154-48a4-bf06-b2c0d332c99d",
        "status": "DELETED",
        "label": "Travel",
        "cardLastDigits": "4691",
        "createdAt": "2025-06-09T09:04:43+00:00"
    },
    {
        "id": "5e8081b6-8c2b-486b-a3c2-5455e0753aa3",
        "status": "DELETED",
        "label": "Groceries",
        "cardLastDigits": "5658",
        "createdAt": "2025-06-18T18:01:24+00:00"
    },
    {
        "id": "63a4e456-8ac5-414b-8c66-c5609cb561b1",
        "status": "DELETED",
        "label": "Online Payments",
        "cardLastDigits": "5826",
        "createdAt": "2025-06-18T19:34:13+00:00"
    },
    {
        "id": "cd990999-5203-44c2-9337-950b5f091be6",
        "status": "ACTIVE",
        "label": "Business",
        "cardLastDigits": "4238",
        "createdAt": "2025-06-11T09:48:10+00:00"
    },
    {
        "id": "d0cd62a2-77d9-495f-92a4-440b59547965",
        "status": "DELETED",
        "label": "Travel",
        "cardLastDigits": "0466",
        "createdAt": "2025-06-18T21:05:05+00:00"
    },
    {
        "id": "a71d2566-6b96-4507-b693-2c8b84c00172",
        "status": "ACTIVE",
        "label": "Business",
        "cardLastDigits": "5872",
        "createdAt": "2025-06-18T19:31:46+00:00"
    },
    {
        "id": "31ed17bc-15b6-418c-aae1-2bae489ccdfb",
        "status": "ACTIVE",
        "label": "Online Payments",
        "cardLastDigits": "3143",
        "createdAt": "2025-06-18T19:30:14+00:00"
    }
]

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Path Params

Responses

🟢200Success
application/json
Body

🟠401Access Denied
🟠400P500: Unknown exception
🟠400P501: Service temporarily unavailable
Previous
Create Virtual Card
Next
Get Card Details
Built with