</> 개발자 API

더 많은 일을
AI 휴머나이저 API

최첨단 API를 사용하여 AI 콘텐츠를 탐지하고 인간화하세요

$0.10 / 1,000단어부터

const res = await fetch("https://v2-humanizer.rephrasy.ai/api/", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <your-api-key>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    text: "AI-generated text here.",
    model: "v3",
    words: true
  })
});

const data = await res.json();
// => { output: "Humanized text...", costs: { total: 1.5 } }
200 OKREST API v1

AI 친화적 통합

Rephrasy API 컨텍스트를 AI 도구에 붙여넣고 통합을 함께 만들어 달라고 요청하세요.

/rephrasy.ai/llms.txt
POST /api/v2-humanizer.rephrasy.ai

Text Humanizer API

AI가 생성한 텍스트를 대규모로 감지하고 휴머나이즈합니다 — 자연스럽게 읽히고 AI 감지기를 통과하도록 다시 씁니다. 간단하고 빠르며 안정적인 JSON API입니다.

$0.10 / 1,000단어부터정액 또는 단어 기반 과금

Authentication

Authorization: Bearer <your-api-key>

모든 요청과 응답은 JSON입니다.

크레딧

두 가지 과금 모드. 정액: 호출당 1 크레딧. 단어 기반(words: true): 0.1 크레딧 정액 + 100단어당 0.1 크레딧. costs: true를 추가하면 응답에서 정확한 비용을 볼 수 있습니다.

const res = await fetch("https://v2-humanizer.rephrasy.ai/api/", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    text: "AI-generated text here.",
    model: "v3",
    words: true
  })
});

const data = await res.json();
// => { output: "Humanized text...", new_flesch_score: 68.8 }
200 OKText API v1

매개변수

필드타입필수설명
textstring필수휴머나이즈할 AI 텍스트(일반 텍스트는 최대 12,000자).
modelstring필수사용할 모델 — v3, Undetectable Model v2, Undetectable Model 또는 SEO Model; 또는 Writing Style ID. 각 모델은 서로 다른 감지기를 겨냥합니다.
stylestring선택v3용 선택 스타일 — creative, journalistic 또는 professional. 기본값은 v3의 일반 동작.
wordsboolean선택단어 기반 가격 활성화(기본값 false).
costsboolean선택응답에 비용 정보 반환(기본값 false).
languagestring선택출력 언어(예: English, German, French). 생략 시 자동 감지.

output과 new_flesch_score(가독성 0–100 — 높을수록 읽기 쉬움)를 반환합니다. 성공 시 200 OK, 401 잘못된 API 키, 422 잘못된 입력.

NEWinput_format

구조화 입력 (HTML / Markdown)

POST /api/ 에 선택적 input_format 필드를 추가하면 일반 텍스트 대신 문서 전체를 보낼 수 있습니다 — 보이는 텍스트만 휴머나이즈되고 구조는 그 주위에 다시 구성됩니다.

필드타입기본값설명
input_formatstring"text""text", "html" 또는 "markdown". html/markdown에서는 보이는 텍스트만 휴머나이즈되고 문서 구조는 그 주위에 다시 구성됩니다.

작동 방식

  1. 문서를 파싱하여 사람이 읽을 수 있는 텍스트만 추출합니다.
  2. 선택한 모델로 그 텍스트를 휴머나이즈합니다.
  3. 문서를 다시 구성합니다 — 태그, 속성, 코드, 링크는 그대로 돌아옵니다.

SEO 모델을 포함한 모든 모델에서 작동합니다.

절대 변경되지 않음

HTML 태그 구조, script·style·code·pre 블록, 링크 href, Markdown 코드 펜스, 인라인 코드, 링크 URL.

curl -X POST https://v2-humanizer.rephrasy.ai/api/ \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "ft_clean-v3",
    "input_format": "html",
    "words": true,
    "text": "<article><h1>The Future of Remote Work</h1><p>It is crucial to leverage modern tools.</p><pre><code>keep --this</code></pre></article>"
  }'

# => {
#   "output": "<article><h1>What lies ahead for remote work</h1><p>You really want to make the most of modern tools.</p><pre><code>keep --this</code></pre></article>",
#   "new_flesch_score": 71.2
# }
# The <h1> and <p> text is rewritten; the <code> block is preserved exactly.

한도 및 가격

  • HTML / Markdown 입력은 200,000자로 제한됩니다(일반 텍스트는 12,000 유지).
  • 구조화 입력은 정액 및 단어 기반 과금 모두에서 일반 요금의 2.5배입니다.
  • 단어 기반 과금은 우리가 다시 쓰는 보이는 단어만 계산합니다 — 주변 마크업은 절대 포함하지 않습니다. 200단어를 감싼 50KB HTML 페이지는 마크업이 아니라 그 200단어(× 2.5)로 과금됩니다.

우리의
탐지기 API

POST /detect_apidetector.rephrasy.ai

AI Detector API

어떤 텍스트든 AI 콘텐츠 점수를 매깁니다 — 전체 0–100 점수(0 = 사람, 100 = AI) 또는 depth 모드에서 문장별 점수.

1 크레딧 / 호출감지당 $0.10 · 정액

Authentication

Authorization: Bearer <your-api-key>

모든 요청과 응답은 JSON입니다.

크레딧

정액: 텍스트 길이와 상관없이 호출당 1 크레딧. 성공적인 200 응답 시 청구됩니다.

const res = await fetch("https://detector.rephrasy.ai/detect_api", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    text: "Rephrasy rephrases AI generated text.",
    mode: ""            // "" = overall score, "depth" = per-sentence
  })
});

const data = await res.json();
// => { scores: { overall: 1.4 }, sentences: { ... } }
200 OKDetector API v1

매개변수

필드타입필수설명
textstring필수AI 콘텐츠를 확인할 텍스트.
modestring선택세부 수준 — 전체 점수는 비워 두고, 문장별 점수는 depth를 보내세요.

scores.overall을 반환합니다(0–100; 0 = 사람, 100 = AI). depth 모드에서는 sentences가 각 문장을 점수에 매핑합니다. 성공 시 200 OK, 401 잘못된 API 키, 422 잘못된 입력.

What You Can Build

Developers and agencies use the Rephrasy API to power their own products and workflows.

Bulk Content Pipelines

Process hundreds of articles or documents in parallel. Integrate into your existing content workflow via a single POST request.

SaaS Products

Build your own AI humanizer tool on top of Rephrasy. White-label the API or offer it as a feature inside your product.

Browser Extensions

Call the API from a Chrome extension to humanize text inline — directly on Google Docs, WordPress, or any web editor.

Agency Automation

Connect Rephrasy to Zapier, Make, or n8n to automatically humanize AI drafts before they hit your CMS or client delivery.

NEWsynthid-humanizer.rephrasy.ai

Image Humanizer API

Remove invisible AI watermarks (SynthID, StableSignature), detect AI provenance, and humanize images programmatically. Supports single images and batches up to 100.

10 credits / imageSame credit balance as text API

Authentication

Authorization: Bearer <your-api-key>

Website key = high-priority queue · User API key = normal queue

Credits

Credits are deducted at batch submission. Insufficient balance → 402 error, no images processed. Batches auto-delete after 24 hours.

Also available

GET/batches/{id}
GET/batches/{id}/download
POST/remove/visible
POST /batches
# 1 — Submit batch
curl -X POST https://synthid-humanizer.rephrasy.ai/batches \
  -H "Authorization: Bearer <your-api-key>" \
  -F "files=@photo1.png" \
  -F "files=@photo2.jpg"

# => { "batch_id": "a3f9c2b1", "job_count": 2, "status": "queued" }

# 2 — Poll until done (every 5–10 s)
curl https://synthid-humanizer.rephrasy.ai/batches/a3f9c2b1 \
  -H "Authorization: Bearer <your-api-key>"

# => { "status": "done", "done": 2, "total": 2, "download_ready": true }

# 3 — Download ZIP (batch deleted after this)
curl -O https://synthid-humanizer.rephrasy.ai/batches/a3f9c2b1/download \
  -H "Authorization: Bearer <your-api-key>"
200 OKImage API v1

Batch status values

queuedWaiting in queue — queue_position shows place
processingGPU is working on this batch
doneAll images finished, ready to download
failedProcessing failed — check per-job error field

Error codes

400No files / more than 100 files
401Missing or invalid API key
402Insufficient credits
404Batch not found or already downloaded
425Batch not done yet (too early to download)
NEWv1-humanizer.rephrasy.ai

Custom Writing Styles API

자신의 전/후 예시로 재사용 가능한 글쓰기 스타일을 학습시킨 뒤, 어떤 텍스트든 그 스타일로 휴머나이즈하세요. 모든 최종 사용자에게 고유한 목소리를 주기에 완벽합니다.

20 크레딧 / 학습1 크레딧 / 휴머나이즈 호출

인증

Authorization: Bearer <your-api-key>

모든 요청과 응답은 JSON입니다.

크레딧

스타일 학습은 20 크레딧이며 성공 후에만 청구됩니다. 각 휴머나이즈 호출은 1 크레딧입니다. 스타일 수에 제한이 없으며 크레딧으로 과금됩니다.

POST /api/styles
curl -X POST https://v1-humanizer.rephrasy.ai/api/styles \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Client 42 voice",
    "external_ref": "client-42",
    "sentences": [
      {"original": "The product offers many benefits to users.",
       "rewritten": "Honestly? This thing just makes life easier. Here is why."},
      {"original": "It is important to consider several factors.",
       "rewritten": "A few things matter here — let us walk through them."}
    ]
  }'

# => {
#   "style_id": "aB3xY7...",
#   "name": "Client 42 voice",
#   "external_ref": "client-42",
#   "status": "completed"
# }
200 OKWriting Styles API v1

오류 코드

400API 키가 필요합니다 — Authorization 헤더 누락
400잘못된 API 키 — 키를 인식할 수 없음
400작업에 필요한 크레딧 부족
403글쓰기 스타일이 이 사용자의 것이 아닙니다
404글쓰기 스타일을 찾을 수 없음
500스타일 분석 실패 — 학습 실패, 크레딧 미청구, 다시 시도

참고: 스타일은 API로 삭제할 수 없습니다. 본인 API 키로 만든 스타일만 반환됩니다.

Bulk Credits — Unbeatable API Pricing

No per-seat fees, no rate limits. Buy credits once, use them any time. The more you buy, the cheaper each request gets.

5,000

credits

$275

$0.0550 / credit

100k words for $11.00
Most Popular

10,000

credits

$500

$0.0500 / credit

100k words for $10.00

20,000

credits

$950

$0.0475 / credit

100k words for $9.50

50,000

credits

$2,250

$0.0450 / credit

100k words for $9.00

* Based on 100 × 1,000-word requests with word-based pricing enabled (2 credits each = 200 credits total)

Real cost — humanizing 100,000 words

100 requests of 1,000 words each, word-based pricing enabled (words: true):

Rephrasy API (10K bulk)

$10.00

$0.10 per 1K words — no subscription, no monthly cap

WriteHuman Premium

$17.25

$69/mo plan pro-rated for 100K of 400K words

Undetectable AI Premium

$47.25

$15.75/mo × 3 months needed for 100K words

* Competitor prices based on publicly listed plans. WriteHuman: $69/mo Premium. Undetectable AI: $15.75/mo Premium (35K words/mo).

Ready to integrate?

Sign up, subscribe to any plan, and find your API key in your account dashboard. Start making requests in minutes.

개발자를 위해 설계된 AI 휴머나이저 API

AI 휴머나이저 API는 AI 생성 콘텐츠를 대량으로 인간화하려는 개발자를 위해 설계되었습니다. API는 간단하고 빠르며 신뢰할 수 있도록 설계되었습니다. API 전용 플랜의 경우 직접 문의해 주세요!

  • Rephrasy 구독 받기

    강력한 API로 콘텐츠를 즉시 바꿔 표현하세요.

  • Rephrasy AI 탐지기 사용

    규모에 맞는 강력한 AI 탐지 도구로 AI 콘텐츠를 탐지하세요.

  • 최상의 결과를 위해 AI 탐지기와 휴머나이저를 모두 결합

    최상의 결과를 위해 Rephrasy의 AI 탐지기와 휴머나이저를 함께 사용하세요.