Text Formatter

Text Formatter Endpoint

The Text Formatter endpoint allows you to format a given string into a more professional and polished form by capitalizing the first letter of the text, ensuring proper punctuation, and correcting common mistakes. This is useful for text refinement and ensuring consistency in written communication.

Endpoint

  • URL: https://api.erensko.xyz/v1/text-formatter

  • Method: GET

  • Description: This endpoint accepts a string as input in the request query and returns a formatted version of the text with corrections like proper capitalization and punctuation.

Query Parameters

Key
Value

string

The plain text string you would like to format.

Headers

Key
Value

Authorization

Your own personal API key, create one by clicking here. This is required.

Request Example

GET https://api.erensko.xyz/v1/text-formatter?string=hey,+my+name+is+izzy+The+penguin

Response Example

{
  "formattedString": "Hey, my name is Izzy the penguin.",
  "originalString": "hey, my name is izzy the penguin"
}

Last updated