# Inkbox AI Content Studio — Extract Terms

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

Extracts key terms, keywords, or terminology from a block of text using AI

## Facts

- Endpoint: POST https://lastink.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-4b44fba6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u9PIguu97GZ_senWCKsLc

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

Example prompt: Can you extract the key terms and important terminology from this article: 'Machine learning models require large datasets for training. Supervised learning, unsupervised learning, and reinforcement learning are the three main paradigms. Neural networks, especially deep learning architectures, have driven recent breakthroughs.'

## When to prefer this

Choose this endpoint when you need to automatically identify and extract key terms, keywords, or terminology from a body of text — useful for SEO keyword extraction, glossary generation, content tagging, or summarizing the main concepts in a document. It is part of a broader AI content studio suite (Inkbox), so it is well-suited for content workflows requiring pay-per-call flexibility via USDC on Base.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty string input may return empty terms list or error
- Very short text may yield few or no meaningful terms
- Payment failure (402) if USDC balance is insufficient
- Rate limiting if too many calls are made in quick succession

## 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 important terminology 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-4b44fba6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lastink.netlify.app](https://www.zero.xyz/host/lastink.netlify.app/llms.txt)
