Skip to main content
GET
/
public
/
business-entities
/
{businessEntityId}
Get a business entity
curl --request GET \
  --url https://api.prod.commenda.io/api/v1/public/business-entities/{businessEntityId} \
  --header 'x-api-key: <api-key>'
{
  "businessEntity": {
    "id": 44,
    "generalCorporationInfo": {
      "legalName": "Acme Holdings LLC",
      "companyId": 77,
      "businessEntityType": "LLC",
      "incorporationCountry": "US",
      "jurisdiction": "DE",
      "uniqueIdentifierFromJurisdiction": {
        "name": "EIN",
        "value": "12-3456789"
      },
      "primaryTaxIdType": "US_EIN",
      "rootfiCompanies": [
        {
          "id": 1001,
          "connectionStatus": "CONNECTED",
          "syncStatus": "COMPLETED"
        }
      ],
      "dbaName": "Acme",
      "formationDate": "2025-01-01",
      "registeredAddress": {},
      "contactPhone": "+14155550123",
      "entityEmail": "founders@acme.com",
      "taxIds": [
        {
          "type": "US_EIN",
          "name": "Employer Identification Number",
          "value": "12-3456789"
        }
      ],
      "publicFacingWebsiteUrl": "https://acme.com",
      "industryCode": {},
      "businessDescription": "<string>",
      "businessPurpose": "<string>",
      "registeredAgent": {},
      "dateOfClosure": "<string>"
    },
    "accountingInfo": {
      "fiscalYear": {},
      "accountingBasis": "<string>",
      "accountingFrequency": "<string>",
      "countrySpecificFields": {},
      "bankAccounts": [
        {
          "id": "<string>"
        }
      ],
      "accountingFirm": {}
    },
    "featureSpecificInfo": {},
    "entityRelationship": {},
    "lastUpdateTime": "2026-03-01T00:00:00.000Z",
    "locationsInfo": {},
    "stakeholderId": "<string>",
    "onboardingInfo": {},
    "structure": {
      "initialSharesAuthorized": 123,
      "initialSharePrice": 123,
      "esopSharePercentage": 123
    },
    "locations": [
      {
        "id": "loc_123",
        "corporationId": 44,
        "locationTypes": [
          "OPERATIONS"
        ],
        "address": {
          "addressLine1": "548 Market St",
          "postalCode": "94104",
          "country": "US",
          "addressLine2": "Suite 21045",
          "addressLine3": "<string>",
          "city": "San Francisco",
          "state": "CA"
        },
        "createdAt": 1735689600000,
        "updatedAt": 1735776000000,
        "_internalAddressId": 9876,
        "name": "Delaware HQ",
        "startDate": "2025-01-01",
        "employeeCount": 12
      }
    ],
    "governmentIdentifiers": [
      {
        "country": "US",
        "corporationId": 44,
        "corporationType": "LLC",
        "key": "US_EIN",
        "displayName": "Employer Identification Number",
        "shortName": "EIN",
        "description": "US federal tax identifier issued by the IRS.",
        "purposes": [
          "TAXATION"
        ],
        "supportingDocument": {
          "id": 900,
          "fileName": "ein-letter.pdf",
          "fileUrl": "https://bucket.s3.amazonaws.com/ein-letter.pdf",
          "type": "EINLetter",
          "category": "TAX_AND_COMPLIANCE_DOCUMENT",
          "fileTypeSpecifiers": [
            ".pdf"
          ]
        },
        "isFunctionCritical": true,
        "isCustom": false,
        "linkedRegistrations": [
          {
            "internalIdentifier": "US_EIN",
            "displayName": "Employer Identification Number",
            "purpose": "TAXATION"
          }
        ],
        "id": "gov_123",
        "jurisdiction": "DE",
        "value": "12-3456789",
        "createdAt": 1735689600000,
        "lastUpdatedAt": 1735776000000,
        "regexString": "<string>"
      }
    ]
  }
}
Retrieve a single business entity by id.

Authorizations

x-api-key
string
header
required

Path Parameters

businessEntityId
integer
required

Commenda business-entity identifier.

Response

Business entity retrieved successfully

businessEntity
object
required