Web Content Formatting
Input
Mode
Heading style
Text options
Output
Web content checklist
- Keep sentences short and direct.
- Highlight key points with bullets.
- Maintain consistent heading hierarchy.
- Remove duplicated spacing and line breaks.
- Keep tone aligned with brand voice.
<h2>Web content checklist</h2> <ul><li>Keep sentences short and direct.</li><li>Highlight key points with bullets.</li><li>Maintain consistent heading hierarchy.</li><li>Remove duplicated spacing and line breaks.</li><li>Keep tone aligned with brand voice.</li></ul>
API Call Example
curl -X POST "https://api.textformatter.pro/v1/format" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
--data-binary @- <<'JSON'
{
"text": "Web content checklist\n- Keep sentences short and direct.\n- Highlight key points with bullets.\n- Maintain consistent heading hierarchy.\n- Remove duplicated spacing and line breaks.\n- Keep tone aligned with brand voice.",
"mode": "web",
"output": "html",
"options": {
"headingStyle": "h2",
"detectHeadings": true,
"detectLists": true,
"detectColonLabels": true
},
"transforms": {}
}
JSONResponse shape
{
"data": {
"output": "<p>...</p>",
"format": "html"
},
"meta": {
"wordsProcessed": 42
}
}Request payload
{
"text": "Web content checklist\n- Keep sentences short and direct.\n- Highlight key points with bullets.\n- Maintain consistent heading hierarchy.\n- Remove duplicated spacing and line breaks.\n- Keep tone aligned with brand voice.",
"mode": "web",
"output": "html",
"options": {
"headingStyle": "h2",
"detectHeadings": true,
"detectLists": true,
"detectColonLabels": true
},
"transforms": {}
}Don't have an API key yet?
Get one and start formatting thousands of words with no charges.
Plain Text
Web