Table Processor API

About This Application

The Table Processor API is a specialized tool designed to convert HTML tables into an LLM-friendly format. It processes complex table structures with merged cells, headers, and various formatting to produce a clean, structured output that can be easily understood by language models.

This API is particularly useful for applications that need to extract structured data from HTML tables and make it available for AI processing, analysis, or presentation.

Key Features

How to Use

To use this API, you need to send a POST request to the endpoint with HTML table content. The API will process the table and return a structured format that is optimized for LLM consumption.

For detailed API documentation, including request/response formats and examples, please visit our API documentation.

Go to API Documentation

Example

Input HTML:

<table>
  <tr>
    <th>Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>John</td>
    <td>30</td>
  </tr>
</table>

Output Format:

Name: John
Age: 30