TextMaster

FREEMIUM
By Luke | Updated un mese fa | Tools
Popularity

5.7 / 10

Latency

1,077ms

Service Level

100%

Health Check

N/A

README

Endpoints

The API currently supports the following endpoints:

POST /reverse

This endpoint reverses a string.

Parameters:

  • text (required): The string to be reversed.

Example Request:

{
  "text": "Hello, World!"
}

Example Response:

{
  "result": "!dlroW ,olleH"
}

POST /uppercase

This endpoint converts a string to uppercase.

Parameters:

  • text (required): The string to be converted to uppercase.

Example Request:

{
  "text": "Hello, World!"
}

Example Response:

{
  "result": "HELLO, WORLD!"
}

POST /lowercase

This endpoint converts a string to lowercase.

Parameters:

  • text (required): The string to be converted to lowercase.

Example Request:

{
  "text": "Hello, World!"
}

Example Response:

{
  "result": "hello, world!"
}

POST /wordcount

This endpoint counts the number of words in a string.

Parameters:

  • text (required): The string for which to count words.

Example Request:

{
  "text": "Hello, World!"
}

Example Response:

{
  "result": 2
}

POST /charcount

This endpoint counts the number of characters in a string.

Parameters:

  • text (required): The string for which to count characters.

Example Request:

{
  "text": "Hello, World!"
}

Example Response:

{
  "result": 13
}

POST /sentencecount

This endpoint counts the number of sentences in a string.

Parameters:

  • text (required): The string for which to count sentences.

Example Request:

{
  "text": "Hello, World! How are you?"
}

Example Response:

{
  "result": 2
}

POST /summary

This endpoint generates a simple summary of a string.

Parameters:

  • text (required): The string to be summarized.

Example Request:

{
  "text": "Hello, World! This is an example of a longer text that will be summarized."
}

Example Response:

{
  "result": "Hello, World! This is an example of a longer text that will be..."
}
Followers: 0
Resources:
Terms of use
API Creator:
Rapid account: Luke
Luke
sadasdasdlukedev
Log In to Rate API
Rating: 5 - Votes: 1