# ScrapFly Content Keywords Extraction

> ScrapFly Content Keywords Extraction is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Extracts key keywords from a given text, returning a list of the most relevant terms

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/keywords
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-content-keywords-extraction-afb81e23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Nq6nXG-q1o5Q39KJis1zb

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 scrapfly-content-keywords-extraction-afb81e23 -d '<json body>'
```

Example prompt: Extract the top 10 keywords from this article 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

Use this endpoint when you need to programmatically extract keywords or key phrases from arbitrary text for SEO, content tagging, summarization, or indexing purposes. Prefer this over general NLP APIs when already using the ScrapFly ecosystem or paying per-request via x402 on Base chain.

## Known failure modes

- Missing required 'text' field returns error
- Empty string input may return empty keyword list or error
- Very short text may yield few or no keywords
- Network or payment failure returns non-200 status
- Invalid count parameter type may cause validation error

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing the extracted keywords from the provided text, ranked or listed by relevance.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-content-keywords-extraction-afb81e23/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
