Text Rephrasing
The /v2/rephrase
endpoint provides paraphrased versions of the provided text.
Request
Endpoint
POST /v2/rephrase
Parameters
Parameter | Type | Description |
---|---|---|
text | String | The text to be paraphrased. |
Example Request
{
"text": "This is a dinosaur."
}
Limits
Maximum length of input text is 1,000 characters.
Response
The response body will be a JSON object containing:
Parameter | Type | Description |
---|---|---|
status | Integer | The HTTP status code of the response. |
results | Array of Strings | An array containing paraphrased versions of the input text. |
Example Response
{
"status": 200,
"results": [
"This is a dinosaur.",
"That creature is a dinosaur.",
"The large reptile before us is a dinosaur.",
"Behold, a dinosaur.",
"The prehistoric animal we see is a dinosaur."
]
}
Code Examples
TypeScript
import axios from 'axios';
async function rephraseText(text: string, token: string) {
const response = await axios.post(
'https://api.linguix.com/api/v2/rephrase',
{
text: text,
},
{
headers: {
'Authorization': `Bearer ${token}`,
},
},
);
console.log(response.data);
}
rephraseText('This is a dinosaur.', '<your-token>');
Python
import requests
import json
def rephrase_text(text, token):
headers = {
'Authorization': f'Bearer {token}',
}
data = {'text': text}
response = requests.post('https://api.linguix.com/api/v2/rephrase', headers=headers, json=data)
print(json.dumps(response.json(), indent=4))
rephrase_text('This is a dinosaur.', '<your-token>')
Java
import okhttp3.*;
public class Main {
public static void main(String[] args) throws Exception {
String text = "This is a dinosaur.";
String token = "<your-token>";
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"text\":\"" + text + "\"}");
Request request = new Request.Builder()
.url("https://api.linguix.com/api/v2/rephrase")
.post(body)
.addHeader("Authorization", "Bearer " + token)
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();
System.out.println(response.body().string());
}
}