# Tempest AI Content Engine — Keyword Extraction

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

Extracts a specified number of keywords from a given block of text using AI

## Facts

- Endpoint: POST https://trempest.vercel.app/api/keywords
- Price: $0.15/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-keyword-extraction-d1ac81dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xPtbkriXAX7bgeaAJVCYo

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-keyword-extraction-d1ac81dc -d '<json body>'
```

Example prompt: Pull the top 10 keywords from this article text: 'Artificial intelligence is reshaping how businesses operate, from automating routine tasks to enabling smarter decision-making through machine learning and data analytics.'

## When to prefer this

Choose this endpoint when you need fast, AI-powered keyword extraction from arbitrary text with a configurable result count, and you want a pay-per-call model without subscription overhead. Ideal for pipelines that process variable volumes of content — blog posts, reviews, abstracts, or documents — and need topic tags, SEO terms, or index terms on demand.

## Known failure modes

- Missing required 'text' field returns an error response
- Very short or empty text may yield fewer keywords than requested
- Ambiguous or highly technical content may produce low-relevance keywords
- Count parameter exceeding the meaningful keyword density of the text may return fewer results than specified

## 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 the extracted keywords from the input text, up to the requested count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to extract keywords from"
  },
  "count": {
   "type": "number",
   "description": "Number of keywords"
  }
 }
}
```

## 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-keyword-extraction-d1ac81dc/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)
