POST
/
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

The body is of type object.

Response

200
application/json

Text successfully humanized

The response is of type object.