TableConvert API
API Reference Pricing Dashboard

The TableConvert API is a versatile tool designed to streamline the process of converting data between various formats. With access to 370 different converters, this API facilitates seamless data transformation across a multitude of file types and structures, including but not limited to CSV, Excel, HTML, JSON, Markdown and more.

To start utilizing the TableConvert API, follow these steps:

Step 1: Sign Up for an API Key

  1. Create an Account: Sign up for an account to obtain your unique API Key.
  2. Visit the Pricing page: Navigate to the Pricing page to choose your plan.

Step 2: Manage API Key

  1. Access the Authentication page: This page allows you to manage your API key.
  2. Set Your API Key: Once you have your API key, enter it in the designated section to enable API call testing from the documentation.

For assistance with authentication or any other inquiries, refer to the documentation or contact our support team.

Step 3: Testing API

  1. Use the Try Button in the Documentation: Navigate to the API endpoint you want to test and click the Try button.
  2. Run Code Examples: Utilize the provided code examples in various programming languages to test the API endpoints.

Making Requests

When making API requests, keep the following in mind:

  1. Content Type: All API endpoints use the multipart/form-data content type.
  2. Authorization Header: Include the Authorization header in your API calls.

For example, using curl, you can add the Authorization header as follows:

curl -X POST "https://api.tableconvert.com/csv-to-markdown" \
  -H "Authorization: Bearer ${API_Key}" \
  -F "data=name,age"