Skip to main content
POST
/
humanize-text
Humanize Text
curl --request POST \
  --url https://humanizeai-api.starkai.io/humanize-text \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "text": "Urban green spaces, such as parks, gardens, and tree-lined streets, are vital components of modern cities, offering a range of environmental, social, and psychological benefits."
}'
{
  "status": true,
  "message": "Text transformed successfully.",
  "data": {
    "transformedText": "Citified naive spaces, such as parks, gardens, and tree-lined streets, are vital components of modern cities, offering a range of environmental, social, and mental benefits.",
    "transformations": [
      {
        "original": "Urban",
        "replacement": "citified",
        "type": "word",
        "confidence": 0.70416
      }
    ]
  }
}
Check our Documention Page to create a new API Key

Authorizations

X-Api-Key
string
header
required

API Key for authentication

Body

application/json

Text to humanize

text
string
required

The text to be humanized and made more natural

Example:

"Urban green spaces, such as parks, gardens, and tree-lined streets, are vital components of modern cities, offering a range of environmental, social, and psychological benefits."

Response

Text successfully humanized

status
boolean
required

Indicates if the request was successful

Example:

true

message
string
required

Success message

Example:

"Text transformed successfully."

data
object
required
I