# Inkbox AI Content Studio — Sort

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

Sorts or reorders written content using AI, accepting a text input and returning a structured result.

## Facts

- Endpoint: POST https://inkinbox402.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-3f6a9460
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G81xy0FlJlYFcQxVgCzW9

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

Example prompt: Can you sort these bullet points for me into a more logical order: 'Launch campaign, Define audience, Set budget, Write copy, Choose channels'?

## When to prefer this

Use this endpoint when you need to sort, reorder, or arrange text content (such as lists, bullet points, or paragraphs) using AI logic via a simple pay-per-call API. Prefer it when you want AI-driven organization rather than deterministic alphabetical sorting.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty string input may return an error or empty result
- Very long text may exceed input limits and fail
- Payment not accepted or USDC balance insufficient causes 402 payment required
- Service downtime on Netlify returns 503 or 502

## 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 AI-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-3f6a9460/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)
