# DataVault Joke Generator

> DataVault Joke Generator is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a random joke, optionally filtered by category and safety level

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/joke
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-joke-generator-b4f3980f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sIzJQrJzNOKRhml3fWUB-

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 datavault-joke-generator-b4f3980f -d '<json body>'
```

Example prompt: Tell me a safe, family-friendly joke from the 'programming' category — something I can share with my team.

## When to prefer this

Use this endpoint when you need a quick, on-demand joke for entertainment, content generation, or conversational flair, especially when you want control over content safety or joke category. Prefer this over a static joke database when you want variety and pay-per-call pricing.

## Known failure modes

- Invalid category string returns empty or error response
- Missing or malformed request body may return a 400 error
- Service unavailability returns a 5xx error
- No jokes available for requested category/safe combination returns empty data

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

A JSON object with a 'success' boolean and a 'data' object containing the generated joke, filtered by the requested category and safety level.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "safe": {
   "type": "boolean"
  },
  "category": {
   "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/datavault-joke-generator-b4f3980f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
