# Inkbox AI Content Studio — Sort

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

Sorts or organizes written text content using AI processing via the /api/sort endpoint

## Facts

- Endpoint: POST https://0ink.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-e96e8a6c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BI20NNAZnRyUS-xBpa0kz

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

Example prompt: Can you sort this list of product features into a logical order: 'Easy setup, 24/7 support, Cloud sync, Offline mode, Multi-user access, Free trial'?

## When to prefer this

Use this endpoint when you need AI-powered sorting or ordering of textual content, such as lists, paragraphs, or structured text items. It is part of the Inkbox AI Content Studio suite and costs $0.03 USDC per call, making it suitable for lightweight, on-demand text organization tasks.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return empty or error result
- Very long text inputs may exceed processing limits
- Payment failure (402) if USDC balance is insufficient
- Service unavailable if Netlify hosting is down

## 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 reorganized text content as processed by the AI.

## 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-e96e8a6c/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)
