# DataVault Text Rewrite

> DataVault Text Rewrite is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Rewrites or paraphrases input text with a specified tone and style using AI-powered text processing

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/rewrite
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-text-rewrite-92cc5ef8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_25tWTo9MSD2BzxNnHpTJ1

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 datavault-text-rewrite-92cc5ef8 -d '<json body>'
```

Example prompt: Rewrite the following text in a professional tone and formal style: 'Hey, just wanted to check in and see if you guys got the files I sent over last week — let me know if something's off!'

## When to prefer this

Choose this endpoint when you need AI-powered text rewriting with explicit tone and style control for a single text input, especially in a pay-per-call context where you want lightweight, on-demand paraphrasing without a full subscription to a large LLM API.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty or very short text may yield low-quality rewrites
- Unsupported or vague tone/style values may produce inconsistent output
- Payment failure (402) if USDC balance is insufficient on Base
- Service downtime on Vercel deployment may yield 5xx errors

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing the AI-rewritten version of the input text, transformed according to the requested tone and style.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "tone": {
   "type": "string"
  },
  "style": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-text-rewrite-92cc5ef8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
