Skip to main content
GET
/
api
/
v1
/
cards-program
/
users
/
:userId
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/users/3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>'
{
  "success": true,
  "userId": "3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1",
  "firstName": "John",
  "lastName": "Doe",
  "email": "john.doe@example.com",
  "status": "active",
  "phoneNumber": "+15551234567",
  "walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "createdAt": "2024-01-15T10:00:00Z",
  "updatedAt": "2024-01-15T10:30:00Z"
}

Params

userId
string
required
The unique user identifier

Response

success
boolean
Indicates whether the call was successful
userId
string
The unique user identifier
firstName
string
User’s first name
lastName
string
User’s last name
email
string
User’s email address
status
string
User account status: pending, active, suspended, or closed
phoneNumber
string
User’s phone number with country code
walletAddress
string
Associated blockchain wallet address
createdAt
string
ISO 8601 timestamp when the user account was created
updatedAt
string
ISO 8601 timestamp when the user account was last updated
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/users/3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>'
{
  "success": true,
  "userId": "3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1",
  "firstName": "John",
  "lastName": "Doe",
  "email": "john.doe@example.com",
  "status": "active",
  "phoneNumber": "+15551234567",
  "walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "createdAt": "2024-01-15T10:00:00Z",
  "updatedAt": "2024-01-15T10:30:00Z"
}

Error Responses

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