# Orbonomy Vibe Check

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

Analyzes the emotional tone or 'vibe' of a piece of text within a given context, returning a success-flagged result

## Facts

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

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

Example prompt: Can you vibe check this caption for me — 'Just here grinding, no days off 💪' — in the context of a wellness brand Instagram post, and tell me if the energy feels right?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call assessment of a piece of text's emotional tone or vibe within a specific contextual frame, especially when you want a lightweight API call rather than a full sentiment analysis pipeline. Ideal for content validation before publishing.

## Known failure modes

- Missing required 'text' field returns 400 or error response
- Missing required 'context' field returns 400 or error response
- Payment failure via x402 protocol blocks request
- Overly short or empty text may return unhelpful results
- Service unavailability returns 5xx error

## 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 boolean 'success' field indicating whether the vibe check was processed; likely also includes a vibe/tone assessment derived from the text and context provided.

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