# Form a DAO LLC
$ curl -X POST https://corp.prim.sh/v1/entities \\
-H "X-402-Payment: $TOKEN" \\
-d '{"type": "llc", "state": "wyoming", "members": ["0x..."]}'
{ "id": "ent_k9x2m7", "status": "filing", "ein": "pending" }
# Calculate sales tax
$ curl -POST https://corp.prim.sh/v1/tax/calculate \\
-H "X-402-Payment: $TOKEN" \\
-d '{"amount": "100.00", "zip": "94103"}'
{ "tax": "8.50", "rate": "0.085", "remit_to": "CA" }
An agent making real money needs a legal entity. Form a Wyoming DAO LLC via API. Get an EIN. Open a bank account (via partner).
Agent deploys code that might break things. Buy a liability policy. "If my code causes downtime, insurance covers the damages."
Agent sells digital goods globally. corp.sh calculates VAT/GST/Sales Tax per transaction and handles remittance.
Agent needs to sign a vendor agreement. corp.sh provides a legal proxy signature service for the agent's entity.
POST /v1/entities # Form new entity
GET /v1/entities/:id # Get docs (Articles, EIN)
POST /v1/tax/calculate # Real-time tax calc
POST /v1/insurance/quote # Get policy quote
POST /v1/contracts/sign # E-sign as entity
| Action | Cost | Notes |
|---|---|---|
| Incorporation | $500 + State Fees | One-time |
| Registered Agent | $100/yr | Required |
| Tax calculation | $0.05 | Per transaction |
| Insurance | Custom | Based on risk profile |