curl --location --request POST 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/applications/business' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data-raw '{
"name": "Acme Corporation",
"address": {
"line1": "456 Business Ave",
"city": "San Francisco",
"region": "CA",
"postalCode": "94103",
"countryCode": "US"
},
"entity": {
"name": "Acme Corporation LLC",
"type": "LLC",
"description": "Technology solutions provider",
"industry": "Technology",
"registrationNumber": "12345678",
"taxId": "98-7654321",
"website": "https://acme.com",
"expectedSpend": "50000"
},
"initialUser": {
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1985-05-20",
"nationalId": "987654321",
"countryOfIssue": "US",
"email": "jane.smith@acme.com",
"phoneCountryCode": "1",
"phoneNumber": "4155551234",
"address": {
"line1": "789 Oak St",
"city": "San Francisco",
"region": "CA",
"postalCode": "94103",
"countryCode": "US"
},
"ipAddress": "192.168.1.100",
"isTermsOfServiceAccepted": true
},
"representatives": [],
"ultimateBeneficialOwners": [
{
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1985-05-20",
"nationalId": "987654321",
"countryOfIssue": "US",
"email": "jane.smith@acme.com",
"address": {
"line1": "789 Oak St",
"city": "San Francisco",
"region": "CA",
"postalCode": "94103",
"countryCode": "US"
}
}
]
}'
const response = await fetch('https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/applications/business', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'api-key': '<api-key>'
},
body: JSON.stringify({
name: "Acme Corporation",
address: {
line1: "456 Business Ave",
city: "San Francisco",
region: "CA",
postalCode: "94103",
countryCode: "US"
},
entity: {
name: "Acme Corporation LLC",
type: "LLC",
description: "Technology solutions provider",
industry: "Technology",
registrationNumber: "12345678",
taxId: "98-7654321",
website: "https://acme.com",
expectedSpend: "50000"
},
initialUser: {
firstName: "Jane",
lastName: "Smith",
birthDate: "1985-05-20",
nationalId: "987654321",
countryOfIssue: "US",
email: "jane.smith@acme.com",
phoneCountryCode: "1",
phoneNumber: "4155551234",
address: {
line1: "789 Oak St",
city: "San Francisco",
region: "CA",
postalCode: "94103",
countryCode: "US"
},
ipAddress: "192.168.1.100",
isTermsOfServiceAccepted: true
},
representatives: [],
ultimateBeneficialOwners: []
})
});
const data = await response.json();
{
"success": true,
"companyId": "8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
"status": "pending"
}
Business Applications
Create Business Application
This endpoint creates a business card application with company and representative details
POST
/
api
/
v1
/
cards-program
/
applications
/
business
curl --location --request POST 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/applications/business' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data-raw '{
"name": "Acme Corporation",
"address": {
"line1": "456 Business Ave",
"city": "San Francisco",
"region": "CA",
"postalCode": "94103",
"countryCode": "US"
},
"entity": {
"name": "Acme Corporation LLC",
"type": "LLC",
"description": "Technology solutions provider",
"industry": "Technology",
"registrationNumber": "12345678",
"taxId": "98-7654321",
"website": "https://acme.com",
"expectedSpend": "50000"
},
"initialUser": {
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1985-05-20",
"nationalId": "987654321",
"countryOfIssue": "US",
"email": "jane.smith@acme.com",
"phoneCountryCode": "1",
"phoneNumber": "4155551234",
"address": {
"line1": "789 Oak St",
"city": "San Francisco",
"region": "CA",
"postalCode": "94103",
"countryCode": "US"
},
"ipAddress": "192.168.1.100",
"isTermsOfServiceAccepted": true
},
"representatives": [],
"ultimateBeneficialOwners": [
{
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1985-05-20",
"nationalId": "987654321",
"countryOfIssue": "US",
"email": "jane.smith@acme.com",
"address": {
"line1": "789 Oak St",
"city": "San Francisco",
"region": "CA",
"postalCode": "94103",
"countryCode": "US"
}
}
]
}'
const response = await fetch('https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/applications/business', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'api-key': '<api-key>'
},
body: JSON.stringify({
name: "Acme Corporation",
address: {
line1: "456 Business Ave",
city: "San Francisco",
region: "CA",
postalCode: "94103",
countryCode: "US"
},
entity: {
name: "Acme Corporation LLC",
type: "LLC",
description: "Technology solutions provider",
industry: "Technology",
registrationNumber: "12345678",
taxId: "98-7654321",
website: "https://acme.com",
expectedSpend: "50000"
},
initialUser: {
firstName: "Jane",
lastName: "Smith",
birthDate: "1985-05-20",
nationalId: "987654321",
countryOfIssue: "US",
email: "jane.smith@acme.com",
phoneCountryCode: "1",
phoneNumber: "4155551234",
address: {
line1: "789 Oak St",
city: "San Francisco",
region: "CA",
postalCode: "94103",
countryCode: "US"
},
ipAddress: "192.168.1.100",
isTermsOfServiceAccepted: true
},
representatives: [],
ultimateBeneficialOwners: []
})
});
const data = await response.json();
{
"success": true,
"companyId": "8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
"status": "pending"
}
Body
string
required
Legal name of the business
object
required
Business address
object
required
Business entity details
Show Entity object
Show Entity object
object
required
Primary contact and administrator
Show Initial User object
Show Initial User object
string
required
First name (max 50 characters)
string
required
Last name (max 50 characters)
string
required
Date of birth (YYYY-MM-DD format)
string
required
National ID number
string
required
Two-letter country code
string
required
Email address
string
Phone country code (1-3 characters)
string
Phone number (1-15 characters)
object
required
Personal address (same structure as business address)
string
Blockchain wallet address
string
required
IP address
boolean
required
Must be true
array
required
Array of business representatives (same structure as initialUser, but without required IP address and terms acceptance)
array
required
Array of ultimate beneficial owners (UBOs) - individuals who own 25% or more of the business
string
Blockchain chain ID
string
Smart contract address
string
Source key for tracking
Response
boolean
Indicates whether the call was successful
string
The unique company identifier
string
Application status
curl --location --request POST 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/applications/business' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data-raw '{
"name": "Acme Corporation",
"address": {
"line1": "456 Business Ave",
"city": "San Francisco",
"region": "CA",
"postalCode": "94103",
"countryCode": "US"
},
"entity": {
"name": "Acme Corporation LLC",
"type": "LLC",
"description": "Technology solutions provider",
"industry": "Technology",
"registrationNumber": "12345678",
"taxId": "98-7654321",
"website": "https://acme.com",
"expectedSpend": "50000"
},
"initialUser": {
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1985-05-20",
"nationalId": "987654321",
"countryOfIssue": "US",
"email": "jane.smith@acme.com",
"phoneCountryCode": "1",
"phoneNumber": "4155551234",
"address": {
"line1": "789 Oak St",
"city": "San Francisco",
"region": "CA",
"postalCode": "94103",
"countryCode": "US"
},
"ipAddress": "192.168.1.100",
"isTermsOfServiceAccepted": true
},
"representatives": [],
"ultimateBeneficialOwners": [
{
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1985-05-20",
"nationalId": "987654321",
"countryOfIssue": "US",
"email": "jane.smith@acme.com",
"address": {
"line1": "789 Oak St",
"city": "San Francisco",
"region": "CA",
"postalCode": "94103",
"countryCode": "US"
}
}
]
}'
const response = await fetch('https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/applications/business', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'api-key': '<api-key>'
},
body: JSON.stringify({
name: "Acme Corporation",
address: {
line1: "456 Business Ave",
city: "San Francisco",
region: "CA",
postalCode: "94103",
countryCode: "US"
},
entity: {
name: "Acme Corporation LLC",
type: "LLC",
description: "Technology solutions provider",
industry: "Technology",
registrationNumber: "12345678",
taxId: "98-7654321",
website: "https://acme.com",
expectedSpend: "50000"
},
initialUser: {
firstName: "Jane",
lastName: "Smith",
birthDate: "1985-05-20",
nationalId: "987654321",
countryOfIssue: "US",
email: "jane.smith@acme.com",
phoneCountryCode: "1",
phoneNumber: "4155551234",
address: {
line1: "789 Oak St",
city: "San Francisco",
region: "CA",
postalCode: "94103",
countryCode: "US"
},
ipAddress: "192.168.1.100",
isTermsOfServiceAccepted: true
},
representatives: [],
ultimateBeneficialOwners: []
})
});
const data = await response.json();
{
"success": true,
"companyId": "8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
"status": "pending"
}
⌘I