# corp.sh > Legal entities for agents. Form and manage companies programmatically. Base URL: https://corp.prim.sh Auth: x402 (USDC on Base, chain `eip155:8453`) Status: Phantom. This primitive is not yet available. ## Endpoints - `POST /v1/entities` — create a new legal entity. - `GET /v1/entities/:id` — fetch entity details. - `GET /v1/entities` — list entities. - `POST /v1/entities/:id/documents` — upload required documents. ## Pricing - Formation: one-time fee per entity (jurisdiction-specific). - Ongoing filings: per-filing fee. See human docs at `https://prim.sh/corp` for jurisdiction coverage and pricing. ## Examples ```bash # Create a Delaware LLC curl -X POST https://corp.prim.sh/v1/entities \ -H "X-402-Payment: $TOKEN" \ -d '{"jurisdiction": "US-DE", "type": "llc", "name": "Agent Services LLC"}' ```