Skip to main content
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"
            }
        }
    ]
}'
{
  "success": true,
  "companyId": "8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
  "status": "pending"
}

Body

name
string
required
Legal name of the business
address
object
required
Business address
entity
object
required
Business entity details
initialUser
object
required
Primary contact and administrator
representatives
array
required
Array of business representatives (same structure as initialUser, but without required IP address and terms acceptance)
ultimateBeneficialOwners
array
required
Array of ultimate beneficial owners (UBOs) - individuals who own 25% or more of the business
chainId
string
Blockchain chain ID
contractAddress
string
Smart contract address
sourceKey
string
Source key for tracking

Response

success
boolean
Indicates whether the call was successful
companyId
string
The unique company identifier
status
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"
            }
        }
    ]
}'
{
  "success": true,
  "companyId": "8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
  "status": "pending"
}