# Tempest AI Keyword Extractor

> Tempest AI Keyword Extractor is a paid API for AI agents from tempost.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Extracts the most relevant keywords from a given text passage using AI, returning a configurable number of key terms.

## Facts

- Endpoint: POST https://tempost.vercel.app/api/keywords
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tempest-ai-keyword-extractor-4b99e913
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gjqLoupsYGPCPru1UdvUF

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-keyword-extractor-4b99e913 -d '<json body>'
```

Example prompt: Can you extract the top 10 keywords from this article intro: 'Artificial intelligence is transforming healthcare by enabling faster diagnoses, personalized treatment plans, and predictive analytics that help doctors make better decisions for patients.'

## When to prefer this

Choose this endpoint when you need fast, pay-per-call AI keyword extraction without a subscription — ideal for sporadic or burst workloads. It's part of a larger AI content suite (Tempest), so it's well-suited for pipelines already using other Tempest endpoints. Prefer it over general LLM prompting when you want a structured, predictable response format for keywords with controllable count.

## Known failure modes

- Empty or missing `text` field returns an error or empty result
- Very short input text may yield fewer keywords than requested via `count`
- Non-English text may produce lower-quality keyword extraction
- Extremely long text may exceed token limits or slow response
- Invalid `count` value (e.g. negative number) may cause a 400 error

## 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 — typically an array of key terms or phrases pulled from the input text, ordered by relevance.

## 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-keyword-extractor-4b99e913/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tempost.vercel.app](https://www.zero.xyz/host/tempost.vercel.app/llms.txt)
