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

Params

userId
string
required
The user ID returned when creating or initiating the application

Response

success
boolean
Indicates whether the call was successful
userId
string
The unique user identifier
status
string
Application status: pending, approved, rejected, or requires_documents
firstName
string
First name of the applicant
lastName
string
Last name of the applicant
email
string
Email address of the applicant
createdAt
string
ISO 8601 timestamp when the application was created
updatedAt
string
ISO 8601 timestamp when the application was last updated
rejectionReason
string
Reason for rejection (only present if status is rejected)
requiredDocuments
array
List of required documents (only present if status is requires_documents)
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/applications/individual/3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>'
{
  "success": true,
  "userId": "3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1",
  "status": "approved",
  "firstName": "John",
  "lastName": "Doe",
  "email": "john.doe@example.com",
  "createdAt": "2024-01-15T10:00:00Z",
  "updatedAt": "2024-01-15T10:30:00Z"
}

Error Responses

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