v8
OpenAPI 3.1.02026-08-033623795.0 MBAccounts
Form Company
Starts an LLC or C-Corp formation for a business account. Defaults to an LLC; set entity_type to c_corp to form a C-Corp, which additionally requires share_structure and officer roles on every founder. On submission, the application is validated and the response returns a hosted checkout URL. Once paid, the filing is submitted. Track progress through the account's company_formation field on Retrieve Account.
post/accounts/{account_id}/form_company
Headers
Idempotency-Keystring
Example:d9105228-4a08-46b1-8b91-42fed586d383
A unique key that makes this request safe to retry. See Idempotent requests.
Request body
Example request
{
"business_address": {
"city": "<string>",
"country": "<string>",
"line1": "<string>",
"line2": "<string>",
"postal_code": "<string>",
"state": "<string>"
},
"business_name": "<string>",
"business_phone": "<string>",
"business_type": "<string>",
"business_website": "<string>",
"entity_suffix": "<string>",
"entity_type": "<string>",
"expedite_ein": true,
"formation_state": "<string>",
"founders": [
{
"address": {
"city": "<string>",
"country": "<string>",
"line1": "<string>",
"line2": "<string>",
"postal_code": "<string>",
"state": "<string>"
},
"date_of_birth": "<string>",
"email": "<string>",
"first_name": "<string>",
"is_primary": true,
"last_name": "<string>",
"ownership_percentage": 123,
"phone": "<string>",
"roles": [
"<string>"
],
"ssn": "<string>"
}
],
"industry_group": "<string>",
"industry_type": "<string>",
"share_structure": {
"number_of_shares": 123,
"value": 123
},
"use_registered_agent": true
}Response
application accepted and checkout created