Update README.md

This commit is contained in:
Piero Toffanin 2024-06-03 13:08:16 -04:00 committed by GitHub
parent 76721891b4
commit cb6b324478
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -70,7 +70,7 @@ Response:
}
```
### HTML (beta)
### HTML
Request:
@ -97,6 +97,38 @@ Response:
}
```
### Alternative Translations
Request:
```javascript
const res = await fetch("https://libretranslate.com/translate", {
method: "POST",
body: JSON.stringify({
q: "Hello",
source: "en",
target: "it",
format: "text",
alternatives: 3
}),
headers: { "Content-Type": "application/json" }
});
console.log(await res.json());
```
Response:
```javascript
{
"alternatives": [
"Salve",
"Pronto"
],
"translatedText": "Ciao"
}
```
## Install and Run
You can run your own API server with just a few lines of setup!