# Aura Agent Persistence

> Aura Agent Persistence is a paid API for AI agents from aura.rohnelt.dev, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Provisions an autonomous agent with a real email address (for receiving verification codes), a webhook URL, and durable memory, funded by depositing $1 of prepaid credit (~1,200 calls).

## Facts

- Endpoint: POST https://aura.rohnelt.dev/v1/credit/deposit/1
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aura-agent-persistence-72ffa18d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EMAgjGQpVfNuqKUbzH6Ig

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 aura-agent-persistence-72ffa18d -d '<json body>'
```

Example prompt: Set up my autonomous agent with its own real email address and webhook URL so it can sign up for third-party services and receive verification codes without me — deposit $1 of prepaid credit to get it started.

## When to prefer this

Choose this endpoint when you need to provision a fully autonomous agent with its own email identity, webhook endpoint, and persistent memory in a single step — especially when the agent must complete email-based sign-up or verification flows for third-party services without human intervention. Prefer this over generic email APIs when you need the combination of email reception, webhook routing, memory persistence, and prepaid credit all bundled for an agentic workflow.

## Known failure modes

- Insufficient payment or incorrect USDC amount results in a 402 Payment Required response
- Invalid or malformed POST body returns a 400 Bad Request
- Service unavailability returns a 503, leaving the agent without provisioned identity
- Duplicate deposit attempts may not stack credits predictably
- Network timeout during provisioning may leave partial state

## How this service works

Give an autonomous agent what it structurally lacks: a real email address that receives verification codes, its own webhook URL, durable memory that survives between runs, and the ability to block on an event - an email, a webhook, a signal - without polling and without burning tokens while it waits, or to park its state, exit, and resume hours later exactly where it stopped. US$1.00 of prepaid credit, about 1,200 calls, debited off-chain.

## Output

The endpoint creates and returns a real email address the agent can use for receiving verification codes and confirmation links, a dedicated webhook URL for receiving callbacks, durable memory storage for persistent state, and registers $1 USD (~1,200 calls) of prepaid off-chain credit for subsequent API usage.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aura-agent-persistence-72ffa18d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aura.rohnelt.dev](https://www.zero.xyz/host/aura.rohnelt.dev/llms.txt)
