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": {}
}Companies
Get a company
Returns a single company by doola company ID, including formation status, EIN (once issued), members, addresses, and services.
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
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
doola company ID (KSUID).
⌘I