Docs menuOverview
Developer Docs
TurnitPass API documentation
Start with API keys, call humanizer, paraphrase, detector, citation, and bibliography endpoints, and wire TurnitPass into your own writing product.
One request
Quick example
Send text to the humanizer endpoint with a Bearer API key. The response returns the transformed output, words used, and the remaining word balance for the key owner.
curl -X POST https://turnitpass.com/api/v1/humanize \
-H "Authorization: Bearer tp_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{"text":"Paste your draft here","language":"en","mode":"revise"}'{
"output": "Your humanized text...",
"words_used": 6,
"words_remaining": 249994
}Route map
Explore the docs
Quickstart
Create an API key from your workspace, then call humanize, detect, and citation endpoints with your API key.
Authentication
Developer requests use API keys generated from your TurnitPass workspace.
API Reference
Reference for authenticated humanization, paraphrase, detector, citation, bibliography, and API key status endpoints.
Changelog
Recent platform changes across the humanizer, AI detector, writing tools, billing, and API.
Production flow
Request lifecycle
Every TurnitPass API call follows the same product path: authenticate the key, validate the payload, run the writing or citation workflow, meter usage, and return a response shape that can be stored by your product.
Authenticate the API key
Send an API key generated from the workspace. Revoked, malformed, or missing keys fail before text processing starts.
Validate text, language, and limits
Transform requests enforce word ranges, detector requests enforce longer scan limits, and citation requests validate style and source input.
Run the workflow
Humanize, paraphrase, rewrite, detect, citation, and bibliography routes reuse the same server-side behavior as the public tools.
Record usage and return output
Successful calls return output plus usage metadata such as words used, remaining balance, status details, or formatted citation exports.
API Surface
Core endpoints
Revise
/api/v1/humanizeRevise AI-assisted text while preserving meaning.
Paraphrase
/api/v1/paraphraseRewrite and polish text in multiple modes.
Detect
/api/v1/detectReturn AI-writing signal estimates and revision notes.
Citations
/api/v1/citationFormat DOI, URL, or manual source metadata.