# Writer Place Factory - Create Place

> Writer Place Factory - Create Place is a paid API for AI agents from api.writer.place, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Creates a new Writer Place, assigning the x402 payer as admin and sole manager, returning the new place resource.

## Facts

- Endpoint: POST https://api.writer.place/x402/factory/create
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/writer-place-factory-create-place-4244a79d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8kiFzIgvgoIHiySK84WE4

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability writer-place-factory-create-place-4244a79d -d '<json body>'
```

Example prompt: Create a new Writer Place called 'Morning Reflections' with my wallet address 0xAbC1234567890abcdef1234567890abcdef123456 as the admin.

## When to prefer this

Use this endpoint when you need to programmatically create a new Writer Place and assign a specific Ethereum wallet as admin via the x402 payment protocol. Prefer this over manual creation flows when automating place setup or building workflows that provision Writer Places on behalf of wallet holders.

## Known failure modes

- Address mismatch: the provided wallet address does not match the x402 payer, resulting in a 403 or validation error
- Invalid address format: the address field fails the 0x hex pattern check, returning a 400 bad request
- Payment failure: the $0.01 USDC x402 payment is not processed, blocking place creation
- Duplicate or conflicting place creation with the same parameters may return an error depending on server state

## How this service works

Create a Writer Place: a smart-contract-backed onchain data store for durable public or encrypted writing, notes, and agent data. The x402 payer becomes the admin and sole manager.

## Output

Returns the newly created Writer Place resource, including the place ID and confirmation that the x402 payer wallet address has been assigned as admin and sole manager.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "title": {
   "type": "string",
   "description": "Place title. Defaults to Untitled Place if omitted."
  },
  "address": {
   "type": "string",
   "pattern": "^0x[a-fA-F0-9]{40}$",
   "description": "Admin wallet address. Must equal the x402 payer."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/writer-place-factory-create-place-4244a79d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.writer.place](https://www.zero.xyz/host/api.writer.place/llms.txt)
