For the complete documentation index, see llms.txt. This page is also available as Markdown.

Paraphrases

Rewrite academic text with control over tone, length, and how far the wording may drift.

Endpoints

MethodPathScopeCreditsDescription
POST/v1/paraphrasesparaphrases:write1 per 500 wordsRewrite text

Parameters

ParameterTypeRequiredDescription
textstringyesInput text, up to 5,000 words
toneenumnoacademic (default), fluent, formal, plain, concise, persuasive
lengthenumnoshorten, preserve (default), expand
variationenumnolow, medium (default), high — how far wording may drift
languagestringnoOutput language; omit to preserve input language
variantsintegernoHow many alternatives to return, default 1

Fewer tones than the web app

The consumer product exposes 20+ tones including sarcastic and passive-aggressive. The API ships the six with an academic use case. If you need one of the others, tell us why at api-feedback@scispace.com.

Cost is 1 credit per 500 words of input, per variant.

Response

json
{ "object": "paraphrase", "id": "para_19jx1ybv5x", "tone": "academic", "length": "preserve", "variation": "medium", "language": "en", "variants": [ { "text": "Climate change is causing measurable reductions in species richness…", "sentences": [ { "index": 0, "text": "…", "source_index": 0 } ] } ] }

sentences[].source_index maps each rewritten sentence to the input sentence it came from, so callers can diff or re-splice. Citations in the input are preserved verbatim.

Errors

StatuscodeWhen
400text_too_longover the input cap
422language_unsupportedsee chats language notes

ai-detections · credit

Last updated