Artha API
  1. Card Operations
  • Introduction
  • Authentication
  • KYC/KYB Requirements
  • API Setup Guide
  • Card API Integration Flow
  • Customers
    • Create Customer
      POST
    • List Customers
      GET
    • Get Customer
      GET
    • Update Customer
      PATCH
  • Cards
    • Submit KYC/KYB Applicant
      POST
    • Get Applicant KYC Status
      GET
    • Resubmit KYC/KYB Applicant
      PUT
    • 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
    • Change Card PIN
      POST
    • Resend Physical Card Activation Code
      PUT
    • Get Set / Reset PIN Iframe URL
      GET
    • Get Change PIN Iframe URL
      GET
    • Get Card-View Iframe URL
      GET
    • Get Card Limits
      GET
    • Update Card Limits
      POST
  • Funding
    • Top Up Card
    • Get Top-Up Status
    • Get Card Balance
    • List Top-Up History
  • Transactions
    • List All Transactions
    • List Card Transactions
    • List Customer Transactions
    • Get Transaction
  • Products
    • List Products
    • Get Product
  • Utilities
    • Upload Documents
  • Webhook's
    • Webhooks
  1. Card Operations

Get Card-View Iframe URL

GET
/baseurl/api/v1/cards/{cardId}/iframe/cardview
Returns a provider-hosted iframe URL where the cardholder can securely view the card details (PAN, expiry, CVV). No sensitive data is returned by the API — it is displayed only inside the iframe. Iframe-flow products only.

Request

Path Params

Header Params

Body Params application/json

Examples

Responses

🟢200
application/json
Iframe URL retrieved successfully.
Bodyapplication/json

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/baseurl/api/v1/cards//iframe/cardview' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;' \
--header 'Content-Type: application/json' \
--data '{}'
Response Response Example
{
    "cardId": "a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11",
    "iframeUrl": "https://provider.example.com/pin/setup?token=…"
}
Modified at 2026-07-16 12:12:52
Previous
Get Change PIN Iframe URL
Next
Get Card Limits
Built with