# Brand Voice Review

> Brand Voice Review is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Analyzes a blog post against brand guidelines and returns tone, wording, and style edits with rewritten examples and a compliance score.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/solar_robin/brand-voice-review
- 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/brand-voice-review-4861397b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zw27mDwFsQ0_FWCzEndoU

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 brand-voice-review-4861397b -d '<json body>'
```

Example prompt: Can you review this blog post draft against our brand guidelines — we want a formal but approachable tone, no passive voice, and consistent use of 'customers' not 'users' — and give me a compliance score plus rewritten examples for any sections that miss the mark?

## When to prefer this

Choose this endpoint when you need a per-call, no-account AI review of blog content against brand voice guidelines with a compliance score and concrete rewrites — especially useful for content pipelines, editorial QA automation, or one-off freelance content reviews where setting up a full content management integration is overkill.

## Known failure modes

- Missing or vague prompt causes generic or unhelpful analysis
- Very long blog posts may be truncated or produce incomplete coverage
- Ambiguous brand guidelines in the prompt lead to subjective or inconsistent scoring
- Payment failure via x402 results in no response
- Overly brief input without brand context returns low-value generic feedback

## How this service works

Brand Voice Review - Analyze a blog post against brand guidelines and give tone, wording, and style edits with rewritten examples and a compliance score.

## Output

Returns a structured analysis including: a compliance score (how well the content matches the brand voice), identified tone and wording issues with specific examples, rewritten sentence or paragraph examples aligned to the brand guidelines, and stylistic recommendations for improvement.

## 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",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "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",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/brand-voice-review-4861397b/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)
