API Access for AI Applications
Integrate our powerful Markdown conversion capabilities directly into your AI workflows and LLM applications. Convert any supported file format to Markdown programmatically for optimal AI processing.
Request Early API Access
Our API is currently in beta. Fill out this form to request early access and be among the first AI developers to integrate our Markdown conversion services.
- Simple Integration
Easy-to-use RESTful API with comprehensive documentation and code examples for seamless AI workflow integration.
- Secure Access
API keys with rate limiting and HTTPS encryption for secure file processing in your AI pipelines.
- Enterprise Ready
High-availability infrastructure with SLA and dedicated support options for mission-critical AI applications.
- Data Privacy
Files are processed securely and automatically deleted after conversion, ideal for sensitive AI training data.
API Documentation
Our API provides programmatic access to our Markdown conversion capabilities, optimized for AI and LLM applications. This documentation covers the endpoints, authentication, rate limits, and examples to help you get started.
Authentication
All API requests require authentication using your API key in the header:
X-API-Key: your_api_key_here
Available Endpoints
Here are the core endpoints available in our API:
File Conversion
POST/v1/convert
Convert any supported file to Markdown format
Parameters:
- file (multipart/form-data)*: The file to convert
- options (JSON): Conversion options and preferences
Batch Conversion
POST/v1/convert/batch
Convert multiple files in a single request
Parameters:
- files (multipart/form-data (array))*: Array of files to convert
- options (JSON): Conversion options and preferences
URL Conversion
POST/v1/convert/url
Convert content from a URL to Markdown
Parameters:
- url (string)*: URL to content for conversion
Conversion Status
GET/v1/status/{job_id}
Check the status of an in-progress conversion
Parameters:
- job_id (string)*: ID of the conversion job
Rate Limits & Pricing Tiers
Our API is available in different tiers to suit your needs:
Free Tier
- 5 conversions per day
- Files up to 5MB
- Standard priority processing
- Community support
Developer
- 250 conversions per day
- Files up to 25MB
- Priority processing
- Email support with 24-hour response
Business
- 5,000 conversions per day
- Files up to 100MB
- High priority processing
- Priority support with 12-hour response
- Custom integration assistance
Enterprise
- Unlimited conversions
- Custom file size limits
- Highest priority processing
- Dedicated support with SLA
- Custom integration and implementation
- Private deployment options
Example Usage
Here's an example of how to use our API to convert a file to Markdown:
// JavaScript Example
const formData = new FormData();
formData.append('file', fileInput.files[0]);
fetch('https://api.markdownconverters.com/v1/convert', {
method: 'POST',
headers: {
'X-API-Key': 'your_api_key_here',
},
body: formData
})
.then(response => response.json())
.then(data => {
console.log('Converted markdown:', data.markdown);
})
.catch(error => console.error('Error:', error));
Sample API Response
Here's what a typical API response looks like:
{
"success": true,
"job_id": "conv_j8f72hd9a2s7",
"status": "completed",
"original_filename": "document.pdf",
"conversion_time_ms": 1250,
"markdown": "# Document Title
## Introduction
This is the converted content of your document...
## Section 1
More content here with **bold text** and *italics*...
- List item 1
- List item 2
- List item 3
## Section 2

> This is a blockquote from the document
### Subsection
1. Numbered list item 1
2. Numbered list item 2
```
Code block example
```",
"metadata": {
"page_count": 5,
"word_count": 1250,
"image_count": 3,
"table_count": 2
}
}