# Inkbox AI Content Studio — Sort

> Inkbox AI Content Studio — Sort 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-15).

Sorts or reorders written text content using AI, returning a structured result via the /api/sort endpoint.

## Facts

- Endpoint: POST https://inkonbox.netlify.app/api/sort
- 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-sort-9347b29d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__EBVsf_rImXboMZssRfKB

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-sort-9347b29d -d '<json body>'
```

Example prompt: Can you sort and reorder the items in this list for me: 'Bananas, Apples, Cherries, Dates, Elderberries' — put them in a logical or alphabetical order using Inkbox's sort tool.

## When to prefer this

Use this endpoint when you need to sort, reorder, or organize a block of text or list using AI judgment rather than simple alphabetical sorting. Prefer it over manual sorting when the content requires semantic understanding to arrange meaningfully.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty text string may return empty or trivial result
- Very long text may exceed processing limits
- Ambiguous sort criteria may produce unexpected ordering
- Payment failure (402) if USDC balance is insufficient

## 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 sorted or reordered version of 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-sort-9347b29d/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)
