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

Get Card

GET
/api/v1/cards/{{card_id}}
Masked view of the card + status + balance. Card statuses: pending (issuing in progress — just after the 202), active, frozen, failed (creation failed — fee refunded), deleted. Poll this endpoint after Create Card if you prefer not to consume webhooks. A deleted card is still readable (status: deleted).

Request

Header Params

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://api.paylandcard.com/api/v1/cards/{{card_id}}' \
--header 'X-Api-Key: {{api_key}}' \
--header 'X-Timestamp: {{timestamp}}' \
--header 'X-Signature: {{signature}}' \
--header 'Accept: application/json'
Response Response Example
{
    "data": {
        "id": "card_01kx0hqyr1v9ravmyhqdwzky7c",
        "user_id": "usr_01kx0hq7p3y52m0fbwn4gftzht",
        "brand": null,
        "masked_pan": null,
        "last4": null,
        "exp_month": null,
        "exp_year": null,
        "status": "pending",
        "balance": 0,
        "currency": "USD",
        "created_at": "2026-07-08T12:01:00+00:00"
    },
    "status": true
}
Modified at 2026-07-17 06:22:49
Previous
Create Card
Next
Load Funds
Built with