# Orbonomy Vibe Check

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

Analyzes text within a given context to assess its vibe or tone, returning a success indicator

## Facts

- Endpoint: POST https://www.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-229470f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Hr-PAtfcs0z-xJ5RHhQQi

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

Example prompt: Can you do a vibe check on this caption: 'Just dropped our summer collection — effortless, bold, and made for the moment.' The context is that it's for a luxury streetwear brand Instagram post?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call vibe or tone assessment of a piece of text within a specific context, especially if you're already integrated with the x402 payment protocol and want a lightweight content mood check without a full sentiment analysis pipeline.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'context' field returns validation error
- Empty or too-short text may produce unreliable results
- Payment failure via x402 protocol blocks the request
- Network timeout if service is overloaded

## 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 was processed successfully, along with any vibe assessment data for the provided 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-229470f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
