# CCC Studios ASCII Art Table Generator

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

Converts a JSON array of objects into an ASCII art table with specified columns

## Facts

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

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-fdf789fc
```

Example prompt: Can you render this JSON array as an ASCII art table showing only the 'name', 'price', and 'quantity' columns: [{"name":"Apple","price":1.2,"quantity":10},{"name":"Banana","price":0.5,"quantity":25}]?

## When to prefer this

Use this endpoint when you need to quickly render a JSON array of objects as a human-readable ASCII art table in a terminal or plain-text context, especially when paying per-use via x402 micropayments on Base is acceptable. Ideal for developer tools, CLI output formatting, or lightweight data display without a frontend.

## Known failure modes

- Invalid JSON array in 'data' parameter returns error
- Columns not found in the data objects may result in empty or malformed table
- Malformed comma-separated column names cause parsing errors
- Payment failure via x402 micropayment returns 402 status with no content
- Empty data array may return a header-only or empty table

## 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 representing the input JSON data, with rows and columns drawn using text characters, filtered to the specified column names.

## 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-fdf789fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cthreexstudios.vercel.app](https://www.zero.xyz/host/cthreexstudios.vercel.app/llms.txt)
