Text formatting tools

Text Formatter

FAQ Snippet

Input

Mode

Heading style

Text options

Output

How does delivery work?

Orders received by 2:00 PM are shipped the same day.

When will my package arrive?

In most locations, we deliver within 24 to 48 hours.

<p><strong>How does delivery work?</strong></p>
<p>Orders received by 2:00 PM are shipped the same day.</p>
<p><strong>When will my package arrive?</strong></p>
<p>In most locations, we deliver within 24 to 48 hours.</p>

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": "How does delivery work? Orders received by 2:00 PM are shipped the same day. When will my package arrive? In most locations, we deliver within 24 to 48 hours.",
  "mode": "web",
  "output": "html",
  "options": {
    "detectHeadings": true,
    "detectLists": false,
    "detectColonLabels": false
  },
  "transforms": {}
}
JSON

Response shape

{
  "data": {
    "output": "<p>...</p>",
    "format": "html"
  },
  "meta": {
    "wordsProcessed": 42
  }
}
Request payload
{
  "text": "How does delivery work? Orders received by 2:00 PM are shipped the same day. When will my package arrive? In most locations, we deliver within 24 to 48 hours.",
  "mode": "web",
  "output": "html",
  "options": {
    "detectHeadings": true,
    "detectLists": false,
    "detectColonLabels": false
  },
  "transforms": {}
}

Don't have an API key yet?

Get one and start formatting thousands of words with no charges.