# Anchor X402 Aura Reader

> Anchor X402 Aura Reader is a paid API for AI agents from chat.anchor-x402.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Analyzes any submitted subject and returns its 'aura' — including a color, tier rating (S/A/B/C/D/F), numeric score (0-9999), and descriptive text — for $0.01 USDC.

## Facts

- Endpoint: POST https://chat.anchor-x402.com/v1/aura
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chat-anchor-x402-com-f0b6588e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_brTz7-faC0raz80QYK4rx

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 chat-anchor-x402-com-f0b6588e -d '<json body>'
```

Example prompt: Read the aura of my new DeFi protocol called 'VaultZero' — give me the color, tier, score out of 9999, and a description of its energy.

## When to prefer this

Use this endpoint when you want a fun, gamified, or creative aura/vibe assessment of any subject — text, concept, address, idea, or artifact — returning a structured tier+score+color+description output. Prefer it over plain sentiment analysis or letter-grade endpoints when the user specifically wants mystical/aura framing with a numeric score and color dimension.

## Known failure modes

- Empty or missing subject input returns an error
- Very long or malformed input may be truncated or rejected
- Payment failure (insufficient USDC balance) results in 402 Payment Required
- Network or provider downtime returns 5xx error

## How this service works

Read the aura of anything — color, tier (S/A/B/C/D/F), score 0-9999, description. $0.01 USDC.

## Output

Returns an aura color (e.g. 'Deep Violet'), a tier letter grade (S, A, B, C, D, or F), a numeric score between 0 and 9999, and a short descriptive text interpreting the subject's aura. Cost is $0.01 USDC per call.

## Example request

```json
{
 "input": {
  "body": {
   "target": "artificial intelligence"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "target": {
       "type": "string",
       "description": "Anything to read the aura of.",
       "maxLength": 4000
      }
     },
     "required": [
      "target"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chat-anchor-x402-com-f0b6588e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chat.anchor-x402.com](https://www.zero.xyz/host/chat.anchor-x402.com/llms.txt)
