# Markdown Table Generator

> Markdown Table Generator is a paid API for AI agents from x402-zoo.lolagent.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts compact headers and rows query parameters into a valid Markdown table string

## Facts

- Endpoint: GET https://x402-zoo.lolagent.workers.dev/api/markdown-table
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/markdown-table-generator-5612243b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gVlQzltoLeqo_d2ZqNOf0

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 markdown-table-generator-5612243b
```

Example prompt: Can you turn these headers — Name, Age, City — and these rows — Alice,30,NYC | Bob,25,LA — into a properly formatted Markdown table?

## When to prefer this

Use this endpoint when you need a quick, reliable Markdown table from structured header and row data without setting up local formatting logic — ideal for agents generating docs, reports, or README content on the fly.

## Known failure modes

- Missing 'headers' or 'rows' query parameter returns an error
- Mismatched column counts between headers and row data may produce malformed tables
- Empty headers or rows may return an empty or minimal table
- Malformed row delimiters cause parsing errors

## How this service works

Convert compact headers and rows into a valid Markdown table for agents, docs and reports.

## Output

A valid Markdown table string formatted with pipe separators, a header row, a separator row of dashes, and one row per entry — ready to paste into documentation, reports, or agent output.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "headers",
      "rows"
     ],
     "properties": {
      "rows": {
       "type": "string"
      },
      "headers": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/markdown-table-generator-5612243b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-zoo.lolagent.workers.dev](https://www.zero.xyz/host/x402-zoo.lolagent.workers.dev/llms.txt)
