# AurelianFlo XLSX Workbook Generator

> AurelianFlo XLSX Workbook Generator is a paid API for AI agents from api.aurelianflo.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-15).

Generates finance-ready XLSX workbooks from structured sheet data, Markdown/HTML tables, or report payloads for exports and analysis packs.

## Facts

- Endpoint: POST https://api.aurelianflo.com/api/tools/xlsx/generate
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aurelianflo-xlsx-workbook-generator-1f202270
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JPg4Lu6fKRpn2-CMoprP1

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 aurelianflo-xlsx-workbook-generator-1f202270 -d '<json body>'
```

Example prompt: Can you generate a finance-ready Excel workbook from this report? The report is titled 'Q2 Revenue Summary', authored by 'Jane Smith', dated 2024-06-30, with a table called 'revenue' that has columns ['Month','Revenue','Expenses','Net'] and three rows of data, plus headline metrics for Total Revenue ($1.2M) and Net Profit ($340K).

## When to prefer this

Choose this endpoint when you need to programmatically produce a downloadable, finance-ready XLSX file from structured JSON data, Markdown tables, or HTML tables — especially for report exports, audit packs, or financial handoffs where Excel format is required. Prefer over CSV generation when multi-sheet workbooks, headline metrics, or report metadata are needed.

## Known failure modes

- Missing required 'input.type', 'input.bodyType', 'input.body', or 'input.method' fields returns a 400 validation error
- Malformed table rows (wrong data types in cells) cause schema validation failure
- Payment not included or insufficient funds results in a 402 Payment Required response
- Oversized payloads with very large workbook_rows may time out or be rejected
- Invalid report_meta date format may produce malformed workbook metadata

## How this service works

Create finance-ready XLSX workbooks from structured sheets, Markdown/HTML tables, or report payloads for exports and analysis packs.

## Output

Returns a binary XLSX workbook file (or a download URL/base64 payload) containing one or more formatted sheets with the provided tabular data, headline metrics, executive summary, and report metadata — ready for finance handoffs or analysis.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "oneOf": [
      {
       "type": "object",
       "required": [
        "report_meta"
       ],
       "properties": {
        "result": {
         "type": "object",
         "additionalProperties": true
        },
        "tables": {
         "type": "object",
         "additionalProperties": {
          "type": "object",
          "properties": {
           "rows": {
            "type": "array",
            "items": {
             "oneOf": [
              {
               "type": "object",
               "additionalProperties": {
                "oneOf": [
                 {
                  "type": "string"
                 },
                 {
                  "type": "number"
                 },
                 {
                  "type": "integer"
                 },
                 {
                  "type": "boolean"
                 },
                 {
                  "type": "null"
                 }
                ]
               }
              },
              {
               "type": "array",
               "items": {
                "oneOf": [
                 {
                  "type": "string"
                 },
                 {
                  "type": "number"
                 },
                 {
                  "type": "integer"
                 },
                 {
                  "type": "boolean"
                 },
                 {
                  "type": "null"
                 }
                ]
               }
              }
             ]
            }
           },
           "columns": {
            "type": "array",
            "items": {
             "type": "string"
            }
           }
          },
          "additionalProperties": true
         }
        },
        "chart_hints": {
         "type": "array",
         "items": {
          "type": "object",
          "additionalProperties": true
         }
        },
        "report_meta": {
         "type": "object",
         "properties": {
          "date": {
           "type": "string"
          },
          "name": {
           "type": "string"
          },
          "owner": {
           "type": "string"
          },
          "title": {
           "type": "strin
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aurelianflo-xlsx-workbook-generator-1f202270/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aurelianflo.com](https://www.zero.xyz/host/api.aurelianflo.com/llms.txt)
