# Tempest AI Content Engine — Spotlight Endpoint

> Tempest AI Content Engine — Spotlight Endpoint is a paid API for AI agents from trempest.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Generates spotlight-style content (e.g. featured article, hero copy, or curated summary) for a given page title, keywords, and description using AI

## Facts

- Endpoint: POST https://trempest.vercel.app/api/spotlight
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tempest-ai-content-engine-spotlight-endpoint-ba0bcc76
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_76OrNm2t_YOyRbS00_FS-

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 tempest-ai-content-engine-spotlight-endpoint-ba0bcc76 -d '<json body>'
```

Example prompt: Using Tempest's spotlight endpoint, generate featured AI content for my page titled 'Best Noise-Cancelling Headphones 2025', targeting keywords like 'noise cancelling', 'wireless headphones', and 'audiophile', with the description 'A curated guide to the top headphones for focus and travel'.

## When to prefer this

Choose this endpoint when you need AI-generated spotlight or featured content anchored to a specific page title and SEO keywords — particularly for content marketing pipelines, landing page generation, or blog publishing workflows where you need structured, pay-per-call scalability without a subscription model. Prefer this over general-purpose LLM calls when you want a purpose-built content endpoint with built-in USDC micropayment support via x402.

## Known failure modes

- Missing required 'title' field returns a validation error
- Insufficient or vague description may produce generic, low-quality output
- Payment failure in USDC (x402) will block the request before generation
- API timeout if the AI model takes too long to compose the spotlight content
- Empty or mismatched keywords may reduce SEO relevance of generated output

## How this service works

Compose, rewrite, translate, and refine content at scale. 25 AI-powered endpoints. Pay-per-call with USDC on Tempo.

## Output

Returns a JSON object with a success boolean and a data object containing AI-generated spotlight content — typically composed copy, featured text, or a structured content block — tailored to the provided title, keywords, and description.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "title"
 ],
 "properties": {
  "title": {
   "type": "string",
   "description": "Page title"
  },
  "keywords": {
   "type": "array",
   "description": "Target keywords"
  },
  "description": {
   "type": "string",
   "description": "Brief description"
  }
 }
}
```

## 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/tempest-ai-content-engine-spotlight-endpoint-ba0bcc76/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trempest.vercel.app](https://www.zero.xyz/host/trempest.vercel.app/llms.txt)
