latestOpenAPI 3.1.02026-08-163864115.7 MB
c363cb2feb95
Accounts
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/{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": "Austin",
"country": "US",
"line1": "4180 Burnet Rd",
"line2": "Suite 2",
"postal_code": "78756",
"state": "TX"
},
"business_name": "Shine Time Auto Detailing",
"business_phone": "+15125550142",
"business_type": "brick_and_mortar",
"business_website": "https://shinetime.example",
"entity_suffix": "LLC",
"entity_type": "llc",
"expedite_ein": true,
"formation_state": "TX",
"founders": [
{
"address": {
"city": "Austin",
"country": "US",
"line1": "907 Ridgemont Dr",
"line2": "Apt 4",
"postal_code": "78704",
"state": "TX"
},
"date_of_birth": "1988-03-14",
"email": "marcus@shinetime.example",
"first_name": "Marcus",
"is_primary": true,
"last_name": "Webb",
"ownership_percentage": 100,
"phone": "+15125550142",
"roles": [
"president"
],
"ssn": "123-45-6789"
}
],
"industry_group": "automotive",
"industry_type": "car_wash",
"share_structure": {
"number_of_shares": 123,
"value": 123
},
"use_registered_agent": true
}Response
application accepted and checkout created
Example response
{
"checkout_session_id": "ch_xxxxxxxxxxxxxx",
"checkout_url": "https://whop.com/checkout/ch_xxxxxxxxxxxxxx",
"currency": "usd",
"total": 40000
}