# Orbonomy Vibe Check — Content Tone & Context Analyzer

> Orbonomy Vibe Check — Content Tone & Context Analyzer is a paid API for AI agents from backup-v2api.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Analyzes text against a given context to assess its overall vibe, tone, or appropriateness

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/content/vibe-check
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-vibe-check-content-tone-context-analyzer-42351d7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rVjtlhy9ksRNUk-uPbASt

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 orbonomy-vibe-check-content-tone-context-analyzer-42351d7c -d '<json body>'
```

Example prompt: Can you vibe check this caption — 'Just dropped our new collection, no cap, it hits different 🔥' — in the context of a professional luxury fashion brand's Instagram page?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call assessment of whether a piece of text matches a desired tone or context — especially useful for brand safety checks, social media caption review, or content moderation without spinning up a full NLP pipeline.

## Known failure modes

- Missing required 'text' or 'context' fields returns a 400 error
- Empty string inputs may return a failed success:false response
- Ambiguous or very short context may yield low-confidence vibe results
- Payment failure via x402 protocol blocks the request entirely

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean and a vibe assessment indicating whether the text matches or clashes with the provided context, including tone or appropriateness signals.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-vibe-check-content-tone-context-analyzer-42351d7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from backup-v2api.orbonomy.xyz](https://www.zero.xyz/host/backup-v2api.orbonomy.xyz/llms.txt)
