# Inkbox Extract Terms

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

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

## Facts

- Endpoint: POST https://0ink.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-extract-terms-c89b3d8b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__fwrOxCpCI3-tTsZm0UEd

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-extract-terms-c89b3d8b -d '<json body>'
```

Example prompt: Pull out the key terms and important phrases from this article: 'Quantum computing leverages superposition and entanglement to perform calculations that classical computers cannot efficiently solve, with applications in cryptography, drug discovery, and optimization problems.'

## When to prefer this

Use this endpoint when you need to automatically identify and extract the most significant terms, keywords, or phrases from a body of text — ideal for SEO keyword discovery, content tagging, topic modeling, or building glossaries from documents. Prefer this over a general summarization endpoint when the goal is a discrete list of terms rather than a prose summary.

## Known failure modes

- Missing required 'text' field returns a 400 or error response
- Empty string input may return empty terms list or error
- Very short or uninformative text may yield few or no terms
- Payment failure (402) if USDC on Base is not provided or insufficient
- Rate limiting or service unavailability returns 5xx errors

## 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 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-extract-terms-c89b3d8b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 0ink.netlify.app](https://www.zero.xyz/host/0ink.netlify.app/llms.txt)
