# Oblique Markets Text Rewriter

> Oblique Markets Text Rewriter is a paid API for AI agents from api.oblique.markets, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Rewrites input text according to a natural-language instruction (e.g. change tone, formality, simplify, or shorten) using a deterministic flash-model with hard input/output caps

## Facts

- Endpoint: POST https://api.oblique.markets/api/v1/paid/rewrite
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-text-rewriter-5e842786
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XGgzcpJejz6vQA3IJVsQy

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 oblique-markets-text-rewriter-5e842786 -d '<json body>'
```

Example prompt: Rewrite the following paragraph to be more formal and concise — keep the key points but trim it down: 'Hey, just wanted to touch base and see if you guys had a chance to look at the proposal we sent over last week. We think it's a pretty solid deal and would love to get your thoughts!'

## When to prefer this

Choose this endpoint when you need fast, deterministic, instruction-driven text rewriting with predictable cost ($0.005/call) and hard input/output limits. Ideal for agent workflows that need to adjust tone, formality, or length of text at scale without the overhead of a full LLM chat session. Prefer it over general-purpose LLM calls when you want a stateless, single-purpose rewrite operation with consistent latency.

## Known failure modes

- Input text exceeds hard character/token cap — returns error indicating input too long
- Instruction is ambiguous or contradictory — model may produce unexpected output
- Output exceeds hard output cap — response may be truncated
- Payment of $0.005 USDC not received — request rejected with payment-required error
- Empty or missing input text — returns validation error
- Malformed instruction string — may produce low-quality or no transformation

## How this service works

Use when an agent needs rewrite. Returns Rewrite text per a natural-language instruction (tone, formality, simplification, shortening) — deterministic flash-model rewriting with hard input/output caps. $0.005.

## Output

The rewritten version of the input text, transformed according to the provided natural-language instruction — adjusted for tone, formality, length, or simplicity as requested, with hard output length caps enforced by the flash model.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to rewrite; truncated to 8,000 characters"
  },
  "instruction": {
   "type": "string",
   "description": "How to rewrite it, e.g. \"make it formal\", \"shorten to two sentences\""
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "inclusionai/ling-3.0-flash",
  "instruction": "make it formal",
  "text_rewritten": "Dear Ms. Alvarez, I am writing to request a brief extension on the Q3 deliverable. The integration testing surfaced two issues that require an additional three business days to resolve."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-text-rewriter-5e842786/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oblique.markets](https://www.zero.xyz/host/api.oblique.markets/llms.txt)
