Skip to main content
GET
/
api
/
v1
/
cards-program
/
companies
/
:companyId
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/companies/8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>'
{
  "success": true,
  "companyId": "8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
  "name": "Acme Corporation",
  "status": "active",
  "entity": {
    "name": "Acme Corporation LLC",
    "type": "LLC",
    "industry": "Technology",
    "registrationNumber": "12345678",
    "taxId": "98-7654321"
  },
  "address": {
    "line1": "456 Business Ave",
    "city": "San Francisco",
    "region": "CA",
    "postalCode": "94103",
    "countryCode": "US"
  },
  "createdAt": "2024-01-15T10:00:00Z",
  "updatedAt": "2024-01-16T14:30:00Z"
}

Params

companyId
string
required
The unique company identifier

Response

success
boolean
Indicates whether the call was successful
companyId
string
The unique company identifier
name
string
Legal business name
status
string
Company account status: pending, active, suspended, or closed
entity
object
Business entity details
address
object
Business address details
createdAt
string
ISO 8601 timestamp when the company account was created
updatedAt
string
ISO 8601 timestamp when the company account was last updated
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/companies/8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>'
{
  "success": true,
  "companyId": "8f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
  "name": "Acme Corporation",
  "status": "active",
  "entity": {
    "name": "Acme Corporation LLC",
    "type": "LLC",
    "industry": "Technology",
    "registrationNumber": "12345678",
    "taxId": "98-7654321"
  },
  "address": {
    "line1": "456 Business Ave",
    "city": "San Francisco",
    "region": "CA",
    "postalCode": "94103",
    "countryCode": "US"
  },
  "createdAt": "2024-01-15T10:00:00Z",
  "updatedAt": "2024-01-16T14:30:00Z"
}

Error Responses

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