# Inkbox AI Content Studio — Vibe Check

> Inkbox AI Content Studio — Vibe Check is a paid API for AI agents from inkonbox.netlify.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Analyzes a piece of text to evaluate its tone, energy, and overall 'vibe' using AI

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/vibe-check
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/inkbox-ai-content-studio-vibe-check-ec17e907
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oG9XtRPlaty4lEaG_yZCj

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 inkbox-ai-content-studio-vibe-check-ec17e907 -d '<json body>'
```

Example prompt: Can you vibe-check this caption for me: 'Just dropped our new collection — minimal, intentional, made for the ones who move differently.' Does it feel cool and confident or try-hard?

## When to prefer this

Choose this endpoint when you need a quick AI-powered gut-check on the tone or emotional feel of a piece of text — especially useful for marketing copy, social captions, or messages where the 'vibe' matters as much as the literal content. It is part of a 25-endpoint AI content suite, so it complements rewriting and translation endpoints on the same platform.

## Known failure modes

- Missing 'text' field returns a 400 validation error
- Empty string input may return an unhelpful or null vibe result
- Very long text may be truncated or return a generic assessment
- Payment failure (402) if USDC balance is insufficient on Base
- Network timeout if the Netlify serverless function is cold-starting

## How this service works

Draft, rewrite, translate, and optimize written content. 25 AI-powered endpoints. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success flag and a data object containing the AI-assessed vibe, tone, or mood analysis of the submitted text — likely including qualitative labels or scores characterizing the text's energy and emotional register.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/inkbox-ai-content-studio-vibe-check-ec17e907/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from inkonbox.netlify.app](https://www.zero.xyz/host/inkonbox.netlify.app/llms.txt)
