Docs menu快速开始
快速开始
发起第一次自然化改写请求
在工作台创建 API 密钥,然后用同一个 Bearer 令牌调用改写、AI 检测和引用接口。
Five-minute path
From empty workspace to first humanized draft.
Keep the same sequence as the public product: create access, confirm credits, issue a key, then call the writing endpoint from your server.
Integration path
What has to happen first
Create workspace
01Google sign-in opens a private API workspace.
Add words
02Checkout and portal hooks are ready for final Stripe keys.
Generate key
03Copy the key once and store it on your server.
Call /humanize
04Send text in and receive metered output back.
Server request
Humanize endpoint
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 the AI-assisted draft you want to revise",
"language": "en",
"mode": "reduce-aigc"
}'{
"output": "The revised text...",
"words_used": 142,
"words_remaining": 2858
}Next call
Pair the result with detection or citation endpoints when your app needs review loops.
Under five minutes
Setup
Create an account
Sign in with Google, then open the workspace to manage billing, API keys, usage, and word balance.
Choose a plan or word budget
Stripe checkout and the customer portal are wired. Live product keys and prices are intentionally left for final configuration.
Create an API key
Generate a key from the workspace, copy it immediately, and send it with your API key.
Make your first request
Use the examples below to call the humanizer endpoint and inspect the response shape.
Your first API call
Replace tp_live_your_api_key with a key generated from the workspace. Requests should be sent from server-side code, not the browser.
curl -X POST https://turnitpass.com/api/v1/humanize \
-H "Authorization: Bearer tp_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{"text":"请把这段 AI 草稿改得更自然。","language":"zh_CN","mode":"reduce-aigc"}'curl -X POST https://turnitpass.com/api/v1/paraphrase \
-H "Authorization: Bearer tp_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{"text":"请把这段话改得更清楚、更适合提交。","mode":"academic"}'Response
{
"output": "The humanized version of your text...",
"words_used": 8,
"words_remaining": 249992
}Beyond the first call
Workflow examples
Most integrations combine more than one TurnitPass surface. Use detector calls before or after rewriting, then use citation and bibliography endpoints when the app needs structured source output.
curl -X POST https://turnitpass.com/api/v1/detect \
-H "Authorization: Bearer tp_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"text": "Paste at least 50 words of writing to scan.",
"language": "en",
"source_kind": "paste"
}'curl -X POST https://turnitpass.com/api/v1/citation \
-H "Authorization: Bearer tp_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"input": "https://example.com/research-article",
"style": "apa"
}'Next steps
使用 Bearer API 密钥认证
开发者请求使用 TurnitPass 工作台生成的 API 密钥。
TurnitPass REST API
自然化改写、改写润色、AI 检测、文献引用、参考文献和 API 密钥状态端点参考。