Skip to main content
Version: 1.1.0

Owoify

/owoify?text={text}
tip

This route also supports using a POST request with the text body parameter.

This route allows you to owoify text. You can use it to make your text more cute and adorable.

Examples​

Using the fetch API​

fetch('https://nekonya.classydev.fr/api/v1/owoify?text=Hello, world!') // don't forget to encode the text
.then((res) => res.json())
.then((data) => console.log(data)); // { result: 'hewwo, wowwd owo' }

Using Axios​

axios.get('https://nekonya.classydev.fr/api/v1/owoify?text=Hello, world!') // don't forget to encode the text
.then((res) => console.log(res.data)); // { result: 'hewwo, wowwd owo' }

Using the official client​

const nekonya = require('nekonya.js');

nekonya.owoify('Hello, world!').then((owoified) => console.log(owoified)); // hewwo, wowwd owo

Response​

The response is a JSON object with the following properties:

PropertyDescription
resultThe owoified text.