# Orbonomy Vibe Check

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

Analyzes a piece of text within a given context to assess its emotional tone or 'vibe'

## Facts

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

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

Example prompt: Can you vibe-check this tweet for me: 'Just dropped our new collection — bold, raw, unapologetic' — the context is a streetwear brand targeting Gen Z, and I want to know if it lands right?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call emotional tone or vibe assessment of a piece of text grounded in a specific context, especially within automated workflows where per-call pricing is preferred over subscription models.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'context' field returns validation error
- Payment failure via x402 protocol returns 402 status
- Empty or overly short text may yield low-confidence results
- Server error returns non-success response

## 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 indicating whether the vibe analysis completed, along with any vibe or tone assessment derived from the text and its provided 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-c36a8787/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orbonomy.xyz](https://www.zero.xyz/host/orbonomy.xyz/llms.txt)
