# Orbonomy Vibe Check

> Orbonomy Vibe Check is a paid API for AI agents from app.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Analyzes text sentiment and tone (vibe) given a contextual framing, returning a structured success result

## Facts

- Endpoint: POST https://app.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-188bb836
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SZV2YI3yWQtyr_3guNn8g

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-188bb836 -d '<json body>'
```

Example prompt: Can you do a vibe check on this caption I wrote for our new product launch — context is that it's for a Gen Z fashion audience: 'Drop everything. The fit just dropped and it's not for the faint of heart.'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call sentiment or tone assessment of a piece of text with an explicit contextual framing. Useful for content moderation, brand voice validation, or social media review without committing to a subscription-based NLP service.

## Known failure modes

- Missing required 'text' or 'context' fields returns a 400 error
- Payment failure or insufficient USDC balance returns a 402 payment required
- Empty or extremely short text may produce low-confidence or generic results
- Ambiguous context may lead to misclassified tone
- Service downtime or rate limiting may return 5xx errors

## How this service works

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

## Output

A JSON object with a boolean 'success' field indicating whether the vibe check completed, and presumably vibe classification or tone metadata derived from the submitted text and context.

## 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-188bb836/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.orbonomy.xyz](https://www.zero.xyz/host/app.orbonomy.xyz/llms.txt)
