---
title: Convert HTML to Markdown API
slug: convert-html-to-markdown
url: https://apyverse.com/chisleroff/service/convert-html-to-markdown
provider: Website Intelligence
categories: [Data Extraction, Developer Tools]
tags: [html-to-markdown, markdown-conversion, web-scraping, content-extraction, page-parsing]
auth: api_key
---

# Convert HTML to Markdown API

Convert a webpage URL to Markdown and extract the page title. Useful for scraping articles, docs, and knowledge-base pages into text pipelines.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `websiteintelligence/tools/html-to-markdown` | What it does Converts the HTML content at a webpage URL into Markdown. The response returns the pag… | 50 |

## About

## What it does
HTML to Markdown Converter takes a webpage URL and returns the page content as Markdown. Send an http or https URL in `body.url`, and you get back the page `title`, converted `markdown`, `character_count`, and a `readability_success` flag.

Use it when you need clean, developer-friendly text from a live page without building your own scraper and parser. It is useful for turning articles, docs pages, changelogs, and knowledge-base content into Markdown for storage, search indexing, AI pipelines, or internal tooling.

The response is simple to consume: `markdown` holds the converted content, `title` gives you the page title, and `character_count` helps you measure output size. `readability_success` tells you whether the conversion was able to extract a readable article-style result.

If you are normalizing web content for downstream processing, HTML to Markdown Converter gives you a structured markdown version from a single page URL.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyverse.com/chisleroff/service/convert-html-to-markdown
