# DataVault Keywords Extraction

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

Extracts the most relevant keywords from a given text using AI-powered NLP processing

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/keywords
- 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/datavault-keywords-extraction-161223ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5XQeh7PpV2HpCS9sWMF4O

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-keywords-extraction-161223ff -d '<json body>'
```

Example prompt: Extract the top 10 keywords from this text: 'Artificial intelligence is transforming industries worldwide, with machine learning models enabling automation, predictive analytics, and smarter decision-making across healthcare, finance, and logistics.'

## When to prefer this

Choose this endpoint when you need fast, pay-per-call AI-powered keyword extraction from arbitrary text without setting up your own NLP pipeline. Ideal for SEO workflows, content tagging, document indexing, or any scenario where you need to identify the most salient terms from a block of text. Best when you need a lightweight, on-demand solution rather than a bulk batch processor.

## Known failure modes

- Missing required 'text' field returns an error response
- Empty string input may return empty keywords or an error
- Very short text may yield few or no meaningful keywords
- Invalid 'count' type (non-integer) may cause a validation error
- Network or server errors on the Vercel deployment may return 5xx responses

## 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

Returns a JSON object with a success boolean and a data object containing the extracted keywords derived from the input text, ranked or selected based on relevance.

## Request schema (JSON Schema)

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

## 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-keywords-extraction-161223ff/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)
