What you can do today
- Form US companies (LLC or C-Corp) for your users. Submit a formation request via the API; doola handles state filing, registered agent, and EIN. Your user never has to interact with doola directly.
- Register and manage your customers. Create customers (idempotent) and attach one or more companies to each.
- Track formation status in real time. Poll the API or receive webhook events as a company moves through formation.
- Download company documents. Articles of Organization, EIN letter, and forwarded mail, via temporary signed links.
- Self-manage your API keys and webhook endpoint in the Partner Portal, including reviewing delivery logs.
- Browse everything in the Partner Portal, a ready-made web dashboard for your team.
Access and authentication
How do I get access?
How do I get access?
dk_live_...) and webhook signing secret, and creates Partner Portal logins for anyone on your team who needs dashboard access.What support do I get during integration?
What support do I get during integration?
What does the API key look like, and is it secure?
What does the API key look like, and is it secure?
dk_live_.... They are long, unique, and scoped to your account only, so your key can never see another partner’s data. Keys don’t expire by default, and if one is ever compromised it can be revoked and replaced without losing any of your customer or company data.Can I sign in instead of using the API key?
Can I sign in instead of using the API key?
dk_live_...) is for machine-to-machine calls such as creating customers, forming companies, and reading status. Anything else, such as managing API keys, setting your webhook URL, or reviewing delivery logs, lives in the Partner Portal.Can I manage my own API keys?
Can I manage my own API keys?
Can I have multiple team members on the portal?
Can I have multiple team members on the portal?
How is my data isolated from other partners?
How is my data isolated from other partners?
Forming companies
What is included in a formation?
What is included in a formation?
- Entity filing — the LLC or C-Corp filed with the state authority
- EIN (Employer Identification Number) from the IRS
- Registered Agent service for the first year, in the formation state
- Governance document — an Operating Agreement for an LLC, Corporate Bylaws for a C-Corp
- US business address — the Registered Agent address doubles as a US mailing address. Incoming mail is opened, scanned, and delivered to you through the
document_mail_uploadedwebhook, within these limits:- All State and government notices are included, with no cap
- Plus the first 5 pieces of non-official mail
- No packages — the address accepts letter mail only
- Physical mail forwarding is available for an additional fee
Formation, EinCreation, RegisteredAgent), so you can track each one independently — see Company services. The governance document lands as a document_operatingagreement_uploaded or document_corporatebylaws_uploaded webhook shortly after the Articles of Organization are processed.The only per-company charge on the base formation is the state filing fee, which varies by state and entity type — look it up from the state-fees reference endpoint.What entity types do you support?
What entity types do you support?
entityType field on the create-company request to LLC (the default when omitted) or CCorp. The two differ in who you list: an LLC takes members with ownership percentages, while a CCorp takes executiveMembers (officers and directors) and a ccorpValuation (authorized shares and par value per share).What information do I provide to form a company?
What information do I provide to form a company?
- The customer the company belongs to (
doolaCustomerId) - The entity type,
LLC(default) orCCorp - The US state to form in
- Up to 3 preferred company names, in order. doola uses the first one that clears the state’s availability check
- The industry (NAICS code)
- A business description
- The responsible party (the person legally responsible for the EIN application)
- For an LLC: company members and their ownership percentages (must total exactly 100%)
- For a C-Corp: executive members (at least one President, Secretary, Treasurer, and Director; President, Secretary, and Treasurer may each appear once, Director may repeat) plus the share structure (number of authorized shares and par value per share)
Can I form companies for non-US founders?
Can I form companies for non-US founders?
signatureRequirements entry, and you collect the signature through a fully whitelabeled doola signing link. See Non-US founders for the end-to-end flow.Can I expedite the EIN?
Can I expedite the EIN?
requestedServices: [{ "service": "EinCreation", "variant": "Expedite" }] to the create-company payload. See Expedited EIN for the full guide.What states are supported?
What states are supported?
/v1/partner/references/states for the live list, so you never hardcode anything in your onboarding forms.For current state filing fees by state and entity type, see the doola state fees spreadsheet.How long does formation take?
How long does formation take?
PENDING status. The actual formation work happens asynchronously in the background. Timelines vary by state and current volume. You are notified by webhook the moment the status changes, and you can check status any time via the API or the portal.The end-to-end journey your customer experiences, from submission to a ready-to-use company, typically runs as follows. Share this timeline with your clients to set expectations.Submit the formation request
PENDING status.Company filed with the state — ~1 week on average
Business documents secured
- US founder: 1–2 business days
- Non-US founder: 4–6 weeks on average
US bank account opened — 3–5 business days
Run & grow the business
Is there a sandbox?
Is there a sandbox?
https://api.test.doola.com before going to production (https://api.doola.com). Sandbox keys never trigger real state filings or charges. Sandbox also includes a playground that triggers the formation and EIN webhooks on demand.Is a mailing address included?
Is a mailing address included?
document_mail_uploaded webhook — all State and government notices are included, plus the first 5 pieces of non-official mail. The address accepts letter mail only, so no packages. Physical mail forwarding, when you need it, carries a separate fee.What if none of my submitted company names are available?
What if none of my submitted company names are available?
What happens if I miss the annual registered agent renewal?
What happens if I miss the annual registered agent renewal?
Tracking status and documents
How do I track a formation to completion?
How do I track a formation to completion?
formationSubmissionStatus only tracks the request handoff and never reaches a “completed” value, so don’t poll it to detect a formed company. Watch the company_formation_completed webhook or the Formation service status instead. The adminNotes field carries any flags from the doola operations team (for example filing delays); check it first if something is taking longer than expected.What happens if formation fails?
What happens if formation fails?
FAILED. When that happens:- The company status is set to
FAILED - You receive a
company_formation_failedwebhook - The doola team is alerted internally
How do I know when the EIN is issued?
How do I know when the EIN is issued?
company_ein_issued webhook, then fetch the company to read the ein field. The IRS confirmation letter follows separately via document_einletter_uploaded once it is ready to download. The two events arrive independently, so don’t assume an order.How do I access company documents?
How do I access company documents?
document_* webhook fires, call the documents endpoints to list a company’s documents and fetch a temporary signed download URL (valid about 1 hour). Don’t cache the URL; request a fresh one each time you need to download.Webhooks
What are webhooks and how do they work?
What are webhooks and how do they work?
POST with a JSON payload to your HTTPS endpoint, and your server responds 200 OK.How do I test webhooks without waiting for a real formation?
How do I test webhooks without waiting for a real formation?
company_formation_completed, document_aoo_uploaded, company_ein_issued, and document_einletter_uploaded through the normal delivery pipeline: signed, subscription-filtered, and logged in the Partner Portal.Which events will I receive?
Which events will I receive?
How are deliveries retried?
How are deliveries retried?
What if my endpoint keeps failing?
What if my endpoint keeps failing?
partner_webhook_disabled event. Once you have fixed your endpoint, re-enable delivery in the Partner Portal.Can I set or change my own webhook URL?
Can I set or change my own webhook URL?
Can I see webhook delivery logs?
Can I see webhook delivery logs?
How do I verify a webhook is really from doola?
How do I verify a webhook is really from doola?
x-doola-signature header, an HMAC-SHA256 hex digest of the raw request body, keyed with your webhook signing secret. Recompute it on your side and compare using a constant-time comparison (for example timingSafeEqual or compare_digest), never plain string equality.document_* event for the same document (for example when ops re-issues a document after an IRS correction). Handle document events idempotently using documentId.Partner Portal
What is the Partner Portal?
What is the Partner Portal?
partners-portal.doola.com) is a ready-to-use web dashboard for your team, with no technical setup, just log in. It shows a searchable list of all your companies and customers, full company details (status, EIN, filing date, state, entity type, members, addresses), a Formation / EIN / Registered Agent status stepper, downloadable documents, and any notes left by the doola team. It is also where you self-manage your API keys and webhook URL, and review delivery logs.Company and customer data is read-only in the portal. To create or change those, use the API.Is the portal white-labeled?
Is the portal white-labeled?
Can my users see their own company status?
Can my users see their own company status?
Data and privacy
doola stores the registration info you submit (email, first name, last name, country of residence, and optionally phone number) plus the company formation details. SSNs, when submitted as part of responsible-party or member information, are masked in all API responses. Only a redacted version is ever returned (for example****-**-1234). The raw value is stored securely and used only for formation.
Quick reference: available vs not
Related docs
- Company formation: entity types, required fields, status lifecycle
- Webhooks: setup, events, signature verification
- Sandbox playground: complete formation and EIN issuance on demand in sandbox
- Errors: error codes and handling
- Domain objects: field-level reference