Documentation Index
Fetch the complete documentation index at: https://docs.stealthgpt.ai/llms.txt
Use this file to discover all available pages before exploring further.
2026-04-27
AI Detector Endpoint
A newPOST /api/stealthify/detect endpoint exposes the same AI-detection backend that powers the AI Detector tool on the website. Submit text and receive a howLikelyToBeDetected score (0-100) using the standard Stealth API authentication and billing model.What’s New
- New endpoint:
POST /api/stealthify/detect - Request body:
{ "text": string }(max 3,000 words) - Response:
howLikelyToBeDetected(0-100),wordsSpent,remainingCredits,billingMode,meteredChargedCredits - Billing: charged words = input words (1 charged word per input word)
Where to Start
2026-04-27
Business Mode Removed, Replaced by Stealth Agent
Business mode on/api/stealthify has been removed and replaced by the new Stealth Agent endpoint. Stealth Agent runs a full pipeline (research → draft → optional fact-check → humanize → optional images) in a single call, producing higher-quality long-form output than the previous Business engine.What’s Changed
businessflag removed: The 10x business engine no longer runs. Thebusinessfield is still accepted in/api/stealthifyrequest bodies for backward compatibility but has no effect — no client changes are required.- Billing simplified: All
/api/stealthifyrequests are billed at the standard rate (input words + output words). The 10x business multiplier no longer applies. - Migration path: Workloads that previously relied on Business mode (academic, SEO long-form, professional posts) should switch to
POST /api/stealthify/agent.
Where to Start
2026-04-17
Business Mode Temporarily Disabled
Business mode on/api/stealthify is currently disabled.What’s Changed
businessflag ignored: Requests are processed with the standard engine regardless of whetherbusinessis sent astrueorfalse- Standard billing applied: All
/api/stealthifyusage is billed at the standard rate (input words + output words), with no 10x Business multiplier - Schema unchanged: The
businessfield is still accepted in request bodies for backward compatibility; no client changes are required
2026-04-09
Stealth Agent API
Documentation is available forPOST /api/stealthify/agent: multi-step Stealth Agent generation (academic, SEO, or social) with the same Stealth API authentication and billing model as /api/stealthify. See Stealth Agent.2026-04-07
Free-to-Start API Billing
StealthGPT API billing has moved to a free-to-start pay-as-you-go model.What’s Changed
- Free activation flow: New users now activate API billing by adding a payment method instead of buying a fixed starter pack
- Usage-based invoicing: API usage is billed automatically as pay-as-you-go
- Tiered billing thresholds: Invoicing thresholds now scale by tier based on spend within each billing period
- Automatic tier advancement: Accounts can move up to higher invoice thresholds automatically as billing-period spend increases; for higher limits or custom arrangements, email joey@stealthgpt.ai
Impact for Existing Users
- Users with prepaid words: Existing balances continue to be used first with no interruption
- Legacy users: If prompted, accept updated billing terms in the dashboard to keep uninterrupted API access
2026-02-23
Pay-As-You-Go Billing Enabled
StealthGPT API now supports pay-as-you-go billing after your starter/prepaid words are used.What’s New
- Hybrid Billing Model: Start with free starter access after activation/payment setup (and/or prepaid words), then continue automatically on usage-based billing
- Standard Usage Rate: $0.20 per 1,000 words for standard requests (
business=false) - Business Usage Rate: $2.00 per 1,000 words for business requests (
business=true) - Legacy Account Action Required: Legacy users must accept the new terms in their billing dashboard to continue billing under the updated model
How It Works
After your prepaid word balance reaches zero, requests continue without interruption and usage is billed automatically based on endpoint mode and word consumption.2025-09-09
New Detector Optimization
You can now optimize your content for specific AI detection tools using the newdetector parameter.What’s New
- Detector Parameter: Choose between
"turnitin"(default) or"gptzero"to optimize your content for different detection systems - Automatic Optimization: The API automatically adjusts generation settings based on your selected detector
- Enhanced Compatibility: Improved performance across different AI detection platforms
Getting Started
Simply add thedetector parameter to your /api/stealthify requests to get content optimized for your preferred detection tool.2025-05-19
Tokens Deprecated, Words Introduced
The StealthGPT API now uses a word-based system instead of tokens. All references totokens have been replaced with words throughout the documentation and API responses.How Words Are Counted
For the /api/stealthify endpoint, the cost is now calculated asinput words + output words. This means you are charged for the total number of words in your prompt plus the words in the generated or rephrased output. For shorter requests, this results in a lower cost; for longer requests, the difference is minimal, making the new system more transparent and fair.Deprecated Fields in /api/stealthify
tokensSpent(usewordsSpentinstead)systemTokensSpenttotalTokensSpent
New Field
wordsSpent(number of words used for content generation or rephrasing)