POST
/
api
/
stealthify
/
articles
curl --request POST \
  --url https://stealthgpt.ai/api/stealthify/articles \
  --header 'Content-Type: application/json' \
  --header 'api-token: <api-token>' \
  --data '{
  "prompt": "<string>",
  "withImages": true,
  "size": "<string>",
  "outputFormat": "<string>"
}'
{
  "result": "<string>",
  "remainingCredits": 123
}

The /api/stealthify/articles endpoint generates complete, undetectable blog articles with relevant, high-quality images in markdown format, optimized for SEO.

Request Parameters

api-token
string
required

Your unique API authentication token. You can find this in your StealthGPT dashboard under the API Key tab.

prompt
string
required

The topic or subject for which you want to generate a blog article

withImages
boolean
default:"true"

When set to true, includes relevant images in the generated article

size
string
default:"small"

Controls the length of the generated article

outputFormat
string
default:"html"

Format of the returned content. Options are “html” or “markdown”

Response

result
string

The complete blog article in markdown or HTML format, depending on the requested outputFormat

remainingCredits
number

Number of words remaining in your account after this request

Example Request

curl --request POST \
  --url https://stealthgpt.ai/api/stealthify/articles \
  --header 'Content-Type: application/json' \
  --header 'api-token: YOUR_API_TOKEN' \
  --data '{
  "prompt": "Modern backend architecture trends in 2023",
  "withImages": true,
  "size": "medium",
  "outputFormat": "markdown"
}'

Example Response

{
  "result": "# Modern Backend Architecture Trends in 2023\n\n![Modern backend architecture visualization](https://example.com/image1.jpg)\n\n## Introduction\n\nThe landscape of backend development continues to evolve rapidly in 2023, with new paradigms and technologies reshaping how we build and deploy server-side applications...\n\n## Microservices Continue to Dominate\n\nWhile not new to the scene, microservices architecture continues to be refined and optimized in 2023...\n\n[Content continues with full markdown article]",
  "remainingCredits": 950000
}

Usage Notes

  • This endpoint consumes significantly more words than the standard /api/stealthify endpoint
  • Each article generation costs the equivalent of 50,000 stealth words
  • The generated content is optimized for SEO and designed to be undetectable by AI content detection tools