Writer & Humanizer
Endpoints
Writer & Humanizer
Generate or rephrase content with the /api/stealthify endpoint
POST
Writer & Humanizer
TheDocumentation Index
Fetch the complete documentation index at: https://docs.stealthgpt.ai/llms.txt
Use this file to discover all available pages before exploring further.
/api/stealthify endpoint is the core of the StealthGPT API, allowing you to generate new content or rephrase existing text to be undetectable by AI detection tools.
For integrations that cannot keep a request open while humanization runs, use the async
POST /api/stealthify/runs flow. This synchronous endpoint remains unchanged for existing API clients.Request Parameters
Your unique API authentication token. You can find this in your StealthGPT dashboard under the API Key tab.
The text prompt for content generation or the text to be rephrased. Maximum 3,000 words per request.
Set to
true to rephrase the provided prompt text, or false to generate new content based on the promptControls the style and complexity of the generated content
Indicates the detail level of the response
Controls rewrite quality vs speed.
Selects the humanizer model. If omitted, requests use
heavy.Removed. The 10x premium engine has been replaced by the Stealth Agent endpoint, which runs a full research → write → humanize pipeline (with optional fact-checking and image generation).The
business field is still accepted in the request body for backward compatibility, but it has no effect: all /api/stealthify requests run on the standard engine and are billed at the standard rate. For premium-quality, long-form output, send your prompt to POST /api/stealthify/agent instead. See the Stealth Agent overview and guide.Controls how non-English input is returned after processing.
When
true (default), non-English input will be kept in its localized language.
When false, non-English input will be returned in English.Deprecated. Retained for backward compatibility only and has no effect on model behavior.
You can safely omit this field; all requests use the same model.
Controls the formatting of the returned content.
Response
The generated or rephrased content
Human-likeness score from 0 to 100. Higher is better: a higher score means the content reads as more human and is less likely to be flagged as AI; a lower score means it is more likely to be detected as AI-generated. (The field name is historical — treat a higher value as the better result.)
Number of words remaining in your account after this request
New: Replaces tokensSpent. Number of words used for the content generation or rephrasing.
Whether the request was billed from prepaid words (
prepaid) or pay-as-you-go metered billing (payg).If billed via pay-as-you-go, the number of words added to metered usage for this request (0 when billed from prepaid).
Number of tokens used for the content generation or rephrasing
Total number of tokens consumed by this request
Number of tokens used by the system for processing the request
Example Request
Example Response
Usage Notes
- For optimal performance, we recommend keeping responses under 2,000 characters
- The quality and relevance of generated content depends on the phrasing of your prompts
- For more advanced usage techniques, see our Advanced Usage Guide