# Inkbox AI Content Studio — Extract Terms

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

Extracts key terms, keywords, and important phrases from a block of text using AI

## Facts

- Endpoint: POST https://1nk30x.netlify.app/api/extract-terms
- 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/inkbox-ai-content-studio-extract-terms-f3e67ccb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vtygGnL-AgOgutC-WtxCz

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-f3e67ccb -d '<json body>'
```

Example prompt: Can you extract the key terms and important keywords from this article text: 'Quantum computing leverages superposition and entanglement to perform calculations exponentially faster than classical processors, with applications in cryptography, drug discovery, and optimization problems.'

## When to prefer this

Choose this endpoint when you need to automatically identify and surface the most important terms, keywords, or concepts from a piece of text — useful for SEO tagging, content indexing, topic modeling, or summarizing key vocabulary. Prefer this over full summarization endpoints when you specifically want discrete keyword/term output rather than prose.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty or very short text may yield no meaningful terms
- Payment failure via x402 returns 402 Payment Required
- Overly long text inputs may be truncated or rejected
- Network timeout on the Netlify serverless function

## 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 boolean and a data object containing the extracted key terms and keywords 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-f3e67ccb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 1nk30x.netlify.app](https://www.zero.xyz/host/1nk30x.netlify.app/llms.txt)
