# Inkbox AI Content Studio — Extract Terms

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

Extracts key terms, keywords, or glossary-worthy phrases from a block of text using AI.

## Facts

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

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

Example prompt: Can you extract the key terms and important phrases from this article: 'Blockchain technology enables decentralized finance by removing intermediaries, using smart contracts and consensus mechanisms to validate transactions across distributed ledger nodes.'

## When to prefer this

Use this endpoint when you need to automatically identify and extract key terms, keywords, or important phrases from a body of text — useful for SEO keyword extraction, glossary building, content tagging, or summarizing the core concepts in a document. Prefer this over manual reading or generic NLP libraries when you want AI-quality term extraction on a pay-per-call basis without managing model infrastructure.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return empty terms list or error
- Extremely long text may hit payload limits
- Payment failure (402) if USDC balance insufficient
- Network timeout on large text bodies

## How this service works

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

## Output

A JSON object with a success flag and a data object containing the extracted key terms and/or keywords identified from the submitted 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-0c79a864/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from inkinbox402.netlify.app](https://www.zero.xyz/host/inkinbox402.netlify.app/llms.txt)
