# CCC Studios ASCII Art Table Generator

> CCC Studios ASCII Art Table Generator is a paid API for AI agents from cccstudios.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Converts tabular JSON data into an ASCII art table representation, charged per conversion via x402 micropayments on Base.

## Facts

- Endpoint: GET https://cccstudios.vercel.app/api/table
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ccc-studios-ascii-art-table-generator-53b65835
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PsS6bDGvzeUqBeRScejZi

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 ccc-studios-ascii-art-table-generator-53b65835
```

Example prompt: Turn this JSON array into an ASCII art table with columns Name, Age, and City: [{"name":"Alice","age":30,"city":"New York"},{"name":"Bob","age":25,"city":"Austin"}]

## When to prefer this

Choose this endpoint when you need to quickly render structured JSON array data as a human-readable ASCII text table, especially in CLI tools, terminal output, plain-text reports, or environments where markdown or HTML tables are not supported. Useful for lightweight pay-per-use formatting without standing up your own table renderer.

## Known failure modes

- Invalid or malformed JSON array in 'data' parameter returns an error
- Columns parameter doesn't match keys in the JSON objects, resulting in empty or misaligned columns
- Payment failure via x402 micropayment if wallet has insufficient USDC on Base
- Missing required 'data' parameter returns a 400-level error
- Very large datasets may exceed processing limits or timeout

## How this service works

Convert images and text to ASCII art. Pay per conversion via x402 micropayments on Base.

## Output

An ASCII art formatted table rendered from the provided JSON array, with rows and columns neatly aligned in a text-based grid layout suitable for terminal output or plain-text display.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "string",
   "description": "JSON array of objects"
  },
  "columns": {
   "type": "string",
   "description": "Comma-separated column names"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ccc-studios-ascii-art-table-generator-53b65835/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cccstudios.vercel.app](https://www.zero.xyz/host/cccstudios.vercel.app/llms.txt)
