# Orbonomy Vibe Check

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

Analyzes text to assess its emotional tone, energy, or 'vibe' within a given context

## Facts

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

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

Example prompt: Can you vibe-check this tweet for me — context is a casual Gen Z fashion brand launching a new sneaker drop — text is: 'These kicks just dropped and they're already sold out. Sleep on us one more time, we dare you.' Does it hit right?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call vibe or tone assessment for a piece of text given a specific situational context — especially useful for content creators, marketers, or social media managers who want to validate whether copy hits the right emotional note before publishing.

## Known failure modes

- Missing required 'text' field returns 400 error
- Missing required 'context' field returns 400 error
- Empty or too-short text may yield unreliable results
- Payment failure via x402 protocol returns 402 Payment Required
- Ambiguous or contradictory context may reduce accuracy of vibe classification

## 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 vibe assessment results indicating the emotional tone or energy profile of the provided text within the given context.

## Example request

```json
{
 "text": "Just finished the best coffee of my life at this new café downtown. The barista was so friendly and the vibe was absolutely immaculate. Already planning my next visit!",
 "context": "casual social media post about a local coffee shop experience"
}
```

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