# Inkbox AI Content Studio — Extract Terms

> Inkbox AI Content Studio — Extract Terms is a paid API for AI agents from inkonbox.netlify.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-16).

Extracts key terms, keywords, or important phrases from a given piece of text using AI

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/extract-terms
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/inkbox-ai-content-studio-extract-terms-1238f56a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cbmuhiroyeu69uW2ecjRP

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 inkbox-ai-content-studio-extract-terms-1238f56a -d '<json body>'
```

Example prompt: Can you pull out all the key terms and important phrases from this article: 'Artificial intelligence is transforming healthcare by enabling faster diagnosis, personalized treatment plans, and predictive analytics for patient outcomes.'

## When to prefer this

Use this endpoint when you need to automatically extract key terms, keywords, or important phrases from a body of text — ideal for SEO keyword discovery, content tagging, document indexing, or summarizing the core concepts in an article or passage. Prefer this over general summarization endpoints when you specifically need a structured list of terms rather than a prose summary.

## Known failure modes

- Missing 'text' field returns 400 validation error
- Empty string input may return empty terms list
- Very short inputs may produce minimal or no terms
- Payment failure (402) if USDC balance is insufficient
- Timeout or 5xx if upstream AI provider is unavailable

## How this service works

Draft, rewrite, translate, and optimize written content. 25 AI-powered endpoints. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success flag and a data object containing the extracted key terms and important phrases identified from the input text.

## Request schema (JSON Schema)

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

## 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/inkbox-ai-content-studio-extract-terms-1238f56a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from inkonbox.netlify.app](https://www.zero.xyz/host/inkonbox.netlify.app/llms.txt)
