Skip to main content
GET
/
api
/
v1
/
cards-program
/
cards
/
:cardId
/
secrets
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/cards/7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d/secrets' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--header 'session-id: <session-id>'
{
  "success": true,
  "cardNumber": "4242424242424242",
  "cvv": "123",
  "expirationMonth": "12",
  "expirationYear": "2027"
}

Params

cardId
string
required
The unique card identifier

Headers

session-id
string
required
A valid session ID for authentication and security. This ensures that sensitive card data is only accessed during an active, authenticated session.

Response

success
boolean
Indicates whether the call was successful
cardNumber
string
The full card number (PCI-sensitive data)
cvv
string
The card CVV/CVC code
expirationMonth
string
Card expiration month (MM)
expirationYear
string
Card expiration year (YYYY)
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/cards/7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d/secrets' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--header 'session-id: <session-id>'
{
  "success": true,
  "cardNumber": "4242424242424242",
  "cvv": "123",
  "expirationMonth": "12",
  "expirationYear": "2027"
}

Error Responses

{
  "success": false,
  "error": "Unauthorized. Please check your authentication credentials."
}

Security Note

This endpoint returns highly sensitive cardholder data. Ensure that:
  • You have a valid, active session
  • All communication is over HTTPS
  • The data is handled in a PCI-compliant manner
  • Session IDs are properly managed and expire appropriately