Artha API
  1. Cards
  • Introduction
  • Authentication
  • KYC/KYB Requirements
  • API Setup Guide
  • Customers
    • Create Customer
      POST
    • List Customers
      GET
    • Get Customer
      GET
    • Update Customer
      PATCH
  • Cards
    • Submit KYC/KYB Applicant
      POST
    • Issue Card
      POST
    • Cards List
      GET
    • Get Card
      GET
    • Get Sensitive Card Details
      GET
  • Card Operations
    • Activate Card
      POST
    • Freeze Card
      POST
    • Unfreeze Card
      POST
    • Cancel Card
      POST
    • Replace Card
      POST
    • Set / Reset Card PIN
      POST
    • Get Card Limits
      GET
    • Update Card Limits
      POST
  • Funding
    • Top Up Card
      POST
    • Get Card Balance
      GET
    • List Top-Up History
      GET
  • Transactions
    • List All Transactions
      GET
    • List Card Transactions
      GET
    • List Customer Transactions
      GET
    • Get Transaction
      GET
  • Products
    • List Products
    • Get Product
  • Utilities
    • Upload Documents
  • Webhook's
    • Webhooks
  1. Cards

Get Sensitive Card Details

GET
{{baseUrl}}/api/v1/cards/{cardId}/sensitive
Returns sensitive card data including the full PAN (card number), CVV, expiry date, and cardholder name.
āš ļø Security Notice: This endpoint requires additional authentication. Responses must be handled securely and must not be logged or cached. An iframe_url may be returned for PCI-compliant display of card details within a secure iframe.

šŸ“¤ Response Fields#

FieldTypeDescriptionNotes
idstring (uuid)--
card_numberstringFull PAN (16-digit card number). Example: 4111111111114242-
cvvstringCard verification value. Example: 123-
expiry_datestringExpiry date in MM/YY format. Example: 12/27-
cardholder_namestring- Example: JANE DOE-
iframe_urlstringURL for PCI-compliant iframe display of card details.nullable

Request

Path Params

Header Params

Responses

🟢200
application/json
Sensitive card details retrieved.
Body

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '{{baseUrl}}/api/v1/cards/a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11/sensitive' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;'
Response Response Example
200 - Success
{
    "data": {
        "id": "a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11",
        "card_number": "4111111111114242",
        "cvv": "123",
        "expiry_date": "12/27",
        "cardholder_name": "JANE DOE",
        "iframe_url": "https://secure.arthapay.com/card-display/token123"
    },
    "request_id": "req_sens001",
    "timestamp": "2024-01-15T10:30:00Z"
}
Modified atĀ 2026-02-18 13:23:23
Previous
Get Card
Next
Activate Card
Built with