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"
}
Solicitudes empresariales
Crear solicitud empresarial
Este endpoint crea una solicitud de tarjeta empresarial con los datos de la empresa y de su representante
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"
}
Cuerpo
string
requerido
Nombre legal de la empresa
object
requerido
Dirección de la empresa
Mostrar Objeto address
Mostrar Objeto address
string
requerido
Dirección línea 1 (máximo 100 caracteres)
string
Dirección línea 2 (máximo 100 caracteres)
string
requerido
Ciudad (máximo 50 caracteres)
string
requerido
Estado o región (máximo 50 caracteres)
string
requerido
Código postal (1-9 caracteres)
string
requerido
Código de país de dos letras (por ejemplo, “US”)
object
requerido
Datos de la entidad empresarial
Mostrar Objeto entity
Mostrar Objeto entity
string
requerido
Nombre legal de la entidad
string
Tipo de entidad (por ejemplo, “LLC”, “Corporation”)
string
requerido
Descripción del negocio
string
requerido
Sector / industria
string
requerido
Número de registro de la empresa
string
requerido
Número de identificación tributaria
string
requerido
URL del sitio web de la empresa
string
Gasto mensual esperado
object
requerido
Contacto principal y administrador
Mostrar Objeto initialUser
Mostrar Objeto initialUser
string
requerido
Nombre (máximo 50 caracteres)
string
requerido
Apellido (máximo 50 caracteres)
string
requerido
Fecha de nacimiento (formato YYYY-MM-DD)
string
requerido
Número de identificación nacional
string
requerido
Código de país de dos letras
string
requerido
Correo electrónico
string
Código de país del teléfono (1-3 caracteres)
string
Número de teléfono (1-15 caracteres)
object
requerido
Dirección personal (misma estructura que la dirección de la empresa)
string
Dirección de wallet blockchain
string
requerido
Dirección IP
boolean
requerido
Debe ser true
array
requerido
Arreglo de representantes de la empresa (misma estructura que initialUser, pero sin IP ni aceptación de términos requeridos)
array
requerido
Arreglo de beneficiarios finales (UBOs): personas que poseen el 25% o más de la empresa
string
ID de cadena (blockchain)
string
Dirección del smart contract
string
Clave de origen para trazabilidad
Respuesta
boolean
Indica si la operación fue exitosa
string
El identificador único de la empresa
string
Estado de la solicitud
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