Firstbase
  • Welcome
  • Incorporation API
    • Overview
    • Environment
    • Authentication
    • Name Check
      • Request
      • Response
        • Response for Successful
        • Response for Failed
    • Incorporation Order
      • Request
        • User
        • Company
        • Holders
        • Parent Companies
      • Response
        • Response for Successful
        • Response for Failed
          • Unavailable company
          • LLC - Wrong count percent
    • Fetch Order By External Id
      • Request
      • Response
        • Response for Successful
        • Response for Failed
          • Order not found
    • States of Incorporation
      • Request
      • Response
    • Countries
      • Request
      • Response
    • Industries
      • Request
      • Response
    • Webhook
      • Request
      • Response
      • Callback
        • Order call
        • Document call
    • Company Info
Powered by GitBook
On this page
  • Company Example for LLC:
  • Company Example for Corporation:

Was this helpful?

  1. Incorporation API
  2. Incorporation Order
  3. Request

Company

The company object.

This information represents the company to be incorporated.

Parameters
Type
Required
Info

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": [{...}]
}
PreviousUserNextHolders

Last updated 3 years ago

Was this helpful?