GET
/
api
/
platform
/
card
/
get-card
/
{card_id}
Retrieve card details
curl --request GET \
  --url https://api.sandbox.paywint.com/api/platform/card/get-card/{card_id} \
  --header 'X-Platform-ID: <x-platform-id>' \
  --header 'X-Signature: <x-signature>'
{
  "success": true,
  "message": "Operation completed.",
  "data": {
    "user_id": "134dd73b-e378-4a0b-bbe8-447c8b9e4b1f",
    "card_id": "fe0f3346-2f9a-4c5e-b104-0b95c18417fc",
    "card_number": "4242",
    "card_exp": "12/2029",
    "card_nick_name": "Primary Visa",
    "card_type": "CREDIT",
    "first_name": "John",
    "last_name": "Doe",
    "address": "123 Main St",
    "city": "New York",
    "state": "NY",
    "zip": "10001",
    "country": "US",
    "is_blocked": false,
    "card_images_required": false,
    "withdrawal_confirm_required": true,
    "payment_confirm_required": false,
    "is_limited": true
  },
  "queryGeneratedTime": 1718006400
}

Headers

X-Platform-ID
string<uuid>
required

Unique platform identifier (UUID). You receive this during onboarding. Must be sent with every API request.

X-Signature
string
required

HMAC-SHA256 request signature for authentication. Use your platform secret key to compute it as: METHOD + PATH + QUERY + BODY_HASH.

Path Parameters

card_id
string<uuid>
required

Unique identifier (UUID) of the card to be retrieved.

Response

Successful Response

success
boolean
default:true

Indicates whether the request was processed successfully.

Example:

true

message
string
default:Success

A short, human-readable message describing the result of the request.

Example:

"Operation completed."

data
object | null

The main response payload, if applicable

queryGeneratedTime
number | null
default:1756883312.350897

The Unix timestamp (in seconds) indicating when the response was generated.

Example:

1718006400