Getting Started
Get up and running with the UndetectedGPT API in under 5 minutes. Send AI-generated text in, get human-sounding output back.
Setup
Create an account
Sign up at undetectedgpt.ai/signup if you don't have an account yet.
Buy words
Go to Billing and purchase a word pack. Each API request deducts the number of input words from your balance.
Create an API key
Go to API Keys and create a new key. Copy it immediately as it will only be shown once. Your key starts with ugpt_live_.
Make your first request
Use the key in the Authorization header as a Bearer token. See the example below.
Your first API call
Replace YOUR_API_KEY with the key you just created.
curl -X POST https://www.undetectedgpt.ai/api/v1/humanize \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Your AI-generated text here"}'Response
A successful request returns the humanized text, the number of words used, and your remaining balance.
{
"output": "The humanized version of your text...",
"words_used": 8,
"words_remaining": 249992
}Next steps
Was this page helpful?