About this endpoint
What it does
Submits a paraphrasing job for the provided text content. The request body includes the text to paraphrase and optional fields to guide the output, and the response returns a job identifier plus a status URL to check progress.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| content | String | Yes | Provide the content to paraphrase. |
| context | String | No | Provide additional context to improve paraphrasing accuracy. |
| language | String | No | Specify the language of the output. Defaults to English. |
| max_length | Number | No | Specify the maximum length of the paraphrased content. Must be at least 1. |
| voice_tone | String | No | Specify the voice tone of the output. Can be an adjective like funny or joyous, or the name of a famous writer. |
Response
Returns a JSON object with required job_id and status_url string fields. job_id is a UUID identifying the submitted job, and status_url is a URI used to poll for the job's status and result.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| job_id | String | Yes | The unique identifier of the submitted job. Format: UUID. |
| status_url | String | Yes | URL to poll for the job's status and result. Format: URI. |
Notes
This endpoint kicks off an async job and returns immediately with a job identifier; the actual work runs in the background. Pair this call with the corresponding job_check endpoint — poll that until the status reaches a terminal state to retrieve the result. Extract the job identifier from job_id.