Skip to main content
GET
/
v1
/
partner
/
companies
/
{companyId}
Get a company
curl --request GET \
  --url https://api.test.doola.com/v1/partner/companies/{companyId} \
  --header 'Authorization: <api-key>'
{
  "payload": {
    "doolaCompanyId": "<string>",
    "doolaCustomerId": "<string>",
    "entityType": "LLC",
    "state": "DE",
    "nameOptions": [
      {
        "id": "<string>",
        "name": "Acme Labs",
        "entityTypeEnding": "LLC",
        "position": 1
      }
    ],
    "naicsCode": "541511",
    "description": "<string>",
    "responsibleParty": {
      "id": "<string>",
      "legalFirstName": "Ada",
      "legalLastName": "Lovelace",
      "ssn": "<string>",
      "email": "ada@example.com",
      "address": {
        "id": "<string>",
        "line1": "251 W 30th St",
        "line2": "Ste 12E",
        "city": "New York",
        "state": "NY",
        "postalCode": "10001",
        "country": "USA",
        "phone": "+12125550100"
      }
    },
    "addresses": [
      {
        "provider": "doola",
        "type": "business",
        "address": {
          "id": "<string>",
          "line1": "251 W 30th St",
          "line2": "Ste 12E",
          "city": "New York",
          "state": "NY",
          "postalCode": "10001",
          "country": "USA",
          "phone": "+12125550100"
        }
      }
    ],
    "members": [
      {
        "id": "<string>",
        "legalFirstName": "Ada",
        "legalLastName": "Lovelace",
        "contactFullName": "Acme Holdings LLC",
        "isNaturalPerson": true,
        "address": {
          "id": "<string>",
          "line1": "251 W 30th St",
          "line2": "Ste 12E",
          "city": "New York",
          "state": "NY",
          "postalCode": "10001",
          "country": "USA",
          "phone": "+12125550100"
        },
        "ownershipPercent": 100,
        "ssn": "<string>"
      }
    ],
    "adminNotes": [
      {
        "noteId": "<string>",
        "note": "<string>",
        "createdBy": "<string>"
      }
    ],
    "ein": "99-1234567",
    "formationFilingDate": "2023-12-25",
    "services": [
      {
        "name": "Registered Agent",
        "variant": "<string>",
        "status": "<string>",
        "subStatus": "<string>"
      }
    ],
    "executiveMembers": [
      {
        "id": "<string>",
        "type": "President",
        "legalFirstName": "Ada",
        "legalLastName": "Lovelace",
        "ssn": "<string>",
        "address": {
          "id": "<string>",
          "line1": "251 W 30th St",
          "line2": "Ste 12E",
          "city": "New York",
          "state": "NY",
          "postalCode": "10001",
          "country": "USA",
          "phone": "+12125550100"
        }
      }
    ],
    "ccorpValuation": {
      "noOfShares": 10000000,
      "shareValue": 0.0001
    }
  },
  "error": {}
}

Authorizations

Authorization
string
header
required

Partner API key. Send the raw key as the Authorization header value — e.g. dk_test_… in sandbox or dk_live_… in production. Generate and rotate keys in the doola Partner Portal.

Path Parameters

companyId
string
required

doola company ID (KSUID).

Response

200 - */*

OK

payload
object

A company, including formation progress and post-formation details.

error
object