1. Cards
Payland Card
  • Authentication
  • Users
    • Create User
      POST
    • Get User
      GET
    • City Codes
      GET
  • Cards
    • Create Card
      POST
    • Get Card
      GET
    • Load Funds
      POST
    • Card Transactions
      GET
    • Freeze Card
      POST
    • Unfreeze Card
      POST
    • Card Details
      GET
    • Delete Card
      DELETE
  • Webhooks (Payland → your server)
    • SIMULATE card.created
      POST
    • SIMULATE card.creation_failed
      POST
  1. Cards

Card Details

GET
/api/v1/cards/{{card_id}}/details
⚠️ Sensitive endpoint: 10 calls per minute per API key. The response carries Cache-Control: no-store — do NOT store or log the PAN/CVV; display it to the user and discard. Every call is written to an audit log on our side.

Request

Header Params

Responses

🟢200
application/json
Bodyapplication/json

🟠429
🟠410
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://api.paylandcard.com/api/v1/cards/{{card_id}}/details' \
--header 'X-Api-Key: {{api_key}}' \
--header 'X-Timestamp: {{timestamp}}' \
--header 'X-Signature: {{signature}}' \
--header 'Accept: application/json'
Response Response Example
200 - 200 — Success (PAN/CVV revealed)
{
    "data": {
        "id": "card_01kx0hqyr1v9ravmyhqdwzky7c",
        "pan": "4019272718229855",
        "cvv": "802",
        "exp_month": 7,
        "exp_year": 2029,
        "brand": "VISA",
        "cardholder_name": "Ali Veli"
    },
    "status": true
}
Modified at 2026-07-17 06:22:49
Previous
Unfreeze Card
Next
Delete Card
Built with