# Automate LLC Formation and Compliance Filings via API

> State formation filings, annual reports, registered agent correspondence, and compliance notices — mailed to state offices with certified delivery proof. An AI agent can manage all 50 states from one workflow.

## What gets mailed

- Articles of organization / incorporation
- Annual reports and biennial reports
- Amendments (name changes, address changes, member changes)
- Registered agent change notices
- Certificates of good standing requests
- Dissolution and withdrawal filings
- Cover letters with filing fee checks

## Why certified mail for state filings

- Proves the filing was submitted by the deadline
- If a state office loses the filing, USPS proof of mailing protects good standing
- Some states require certified mail for certain amendments and dissolutions

## The agent workflow

1. Agent monitors annual report deadlines across all 50 states
2. System generates the correct form with entity data pre-filled
3. POST the filing PDF to mailbox.bot with Secretary of State as recipient
4. Certified mail tracking confirms delivery
5. If state doesn't acknowledge within expected timeframe, agent flags for follow-up

## Code example

```bash
curl -X POST https://mailbox.bot/api/v1/mail \
  -H "Authorization: Bearer sk_agent_live_..." \
  -F 'document=@annual-report-CA.pdf' \
  -F 'recipient_name=California Secretary of State' \
  -F 'recipient_line1=1500 11th Street' \
  -F 'recipient_city=Sacramento' \
  -F 'recipient_state=CA' \
  -F 'recipient_zip=95814' \
  -F 'mail_class=certified'
```

## Cost

- Certified filing (1-2 pages): $6.68-$6.98
- First class filing: $1.08-$1.38
- No monthly fee for outbound-only

## Best for

- Formation services managing filings for thousands of entities
- Registered agent companies handling state correspondence
- CPAs and law firms managing entity compliance across multi-state portfolios
- AI agents that autonomously manage business operations

## Related

- HTML page: https://mailbox.bot/use-cases/llc-formation-mail
- Government filings: https://mailbox.bot/use-cases/government-filings
- Certified mail API: https://mailbox.bot/use-cases/certified-mail-api
