Skip to main content
GET
/
api
/
v1
/
cards-program
/
cards
/
:cardId
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/cards/7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>'
{
  "success": true,
  "cardId": "7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d",
  "userId": "3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1",
  "status": "active",
  "type": "virtual",
  "last4": "4242",
  "expirationMonth": "12",
  "expirationYear": "2027",
  "brand": "Visa",
  "limit": {
    "amount": 5000,
    "frequency": "per30DayPeriod"
  },
  "createdAt": "2024-01-15T10:00:00Z",
  "activatedAt": "2024-01-15T10:05:00Z"
}

Params

cardId
string
required
The unique card identifier

Response

success
boolean
Indicates whether the call was successful
cardId
string
The unique card identifier
userId
string
The user ID of the card holder
status
string
Card status: notActivated, active, locked, or canceled
type
string
Card type: physical or virtual
last4
string
Last 4 digits of the card number
expirationMonth
string
Card expiration month (MM)
expirationYear
string
Card expiration year (YYYY)
brand
string
Card brand (e.g., “Visa”, “Mastercard”)
limit
object
Spending limits configured for the card
createdAt
string
ISO 8601 timestamp when the card was created
activatedAt
string
ISO 8601 timestamp when the card was activated
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/cards/7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>'
{
  "success": true,
  "cardId": "7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d",
  "userId": "3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1",
  "status": "active",
  "type": "virtual",
  "last4": "4242",
  "expirationMonth": "12",
  "expirationYear": "2027",
  "brand": "Visa",
  "limit": {
    "amount": 5000,
    "frequency": "per30DayPeriod"
  },
  "createdAt": "2024-01-15T10:00:00Z",
  "activatedAt": "2024-01-15T10:05:00Z"
}

Error Responses

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