Company

The company object.

This information represents the company to be incorporated.

ParametersTypeRequiredInfo

companyType

string

required

llc or corporation

registrationState

string

required

wyoming or delaware

businessName

string

required

The name of the company.

businessNameEnding

string

required

For companyTypellc provide LLC, L.L.C, orLimited Liability Company

For companyType corporation provide Inc., Co., Incorporated, Corp, Corporation, Limited, or Ltd.

industry

string

required

Provide the industry from the following list.

  • E-commerce

  • B2B Software

  • B2C Software

  • Marketplace

  • Marketing Services

  • Legal Services

  • Financial Services

  • Travel

  • Healthcare

  • Education

  • Hospitality

  • Consultant/Contractor

If Industry is other, please provide it as a String.

countOfShares

integer

required for corporation

Amount of shares the company wants to issue

minSharePrice

integer

required for corporation

Initial value of each share

Company Example for LLC:

{
	"user": {...},
	"company": {
		"companyType": "llc",
		"registrationState": "delaware",
		"businessName": "Awesome company",
		"businessNameEnding": "LLC",
		"industry": "Software Engineering",
	},
	"holders": [{...},{...}]
}

Company Example for Corporation:

{
	"user": {...},
	"company": {
		"companyType": "corporation",
		"registrationState": "delaware",
		"businessName": "AI Intermediate Holdings",
		"businessNameEnding": "Corp",
		"industry": "Financial Services",
		"countOfShares": 100,
		"minSharePrice": 0.01,
	},
	"holders": [{...},{...}],
	"parentCompanies": [{...}]
}

Last updated