# AMNT Agent Factory

> AMNT Agent Factory is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Converts a one-sentence description into a fully built, published AI agent with its own page.

## Facts

- Endpoint: POST https://www.amnt.io/api/os-tools/agent-factory
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amnt-agent-factory-035418df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FrQFiyTMitj0SPGoikJoX

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 amnt-agent-factory-035418df -d '<json body>'
```

Example prompt: Build me an agent that takes a product URL and generates three punchy ad headlines — go ahead and publish it.

## When to prefer this

Choose this endpoint when you want to go from a plain-English description to a live, shareable AI agent without writing any code or configuring any pipeline. It is especially useful when the desired agent's connector and recipe are not known in advance and you want the factory to select and wire them automatically. Prefer dryRun=true first to validate the plan before committing the creation.

## Known failure modes

- Brief is too vague or ambiguous for the factory to determine an appropriate connector — returns an error or low-confidence preview
- Brief exceeds 2000 characters — rejected by schema validation
- No suitable connector found in the registry for the described capability — may return an error or fallback suggestion
- Payment not processed (x402 protocol failure) — request not executed
- dryRun misused as true when publication is expected — agent is not created

## How this service works

Agent Factory - Turn one sentence into a working, published AI agent with its own page.

## Output

Returns the generated agent's name, description, chosen connector, and — unless dryRun is true — a published agent page URL. In dryRun mode, returns only the preview plan without creating anything.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "brief": {
   "type": "string",
   "examples": [
    "an agent that turns a product URL into three ad headlines"
   ],
   "maxLength": 2000,
   "description": "One sentence. The factory picks the connector, writes the recipe, tests it and publishes it."
  },
  "dryRun": {
   "type": "boolean",
   "default": false,
   "description": "Returns what it would build - the name, the description and the connector - without creating anything."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amnt-agent-factory-035418df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
