Markdown To Html cURL Examples

Command-line examples for testing and integration

3
Endpoints
100%
Uptime
10K
Requests/Day
Free
No API Key

API Endpoints

POST /api/markdown-to-html

Process input with Markdown To Html

GET /api/markdown-to-html/status

Check API status and health

GET /api/markdown-to-html/schema

Get input/output JSON schema

Code Examples

cURL

curl -X POST https://api.devkits.com/markdown-to-html \
  -H "Content-Type: application/json" \
  -d '{"input": "your data here"}'

JavaScript

fetch('https://api.devkits.com/markdown-to-html', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ input: 'your data here' })
}).then(r => r.json()).then(console.log);

Python

import requests
response = requests.post(
  'https://api.devkits.com/markdown-to-html',
  json={'input': 'your data here'}
)
print(response.json())

Authentication

No API Key Required (Free Tier)

DevKits API is completely free for basic usage. No registration, no API keys, just start making requests.

Optional API Key (Pro Tier)

For higher rate limits and analytics, include your API key in the header:

Authorization: Bearer YOUR_API_KEY

Rate Limits

Free Tier

  • • 100 requests/minute
  • • 10,000 requests/day
  • • No API key required

Pro Tier ($9 one-time)

  • • 1,000 requests/minute
  • • Unlimited daily requests
  • • Priority support

Frequently Asked Questions

Is the Markdown To Html API free?

Yes, DevKits provides free access to all APIs with generous rate limits. Premium tiers available for high-volume usage.

What are the rate limits?

Free tier: 100 requests/minute, 10,000 requests/day. Pro tier: 1,000 requests/minute, unlimited daily requests.

Do I need an API key?

No API key required for basic usage. Optional API keys provide higher rate limits and usage analytics.

Is the API secure?

Yes, all API requests use HTTPS encryption. No data is stored on our servers — all processing is stateless.

Related Tools

Ready to use Markdown To Html?

Try it online for free — no signup required. Runs in your browser with 100% client-side processing.

Start Using Markdown To Html