Skip to main content
Version: Next

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)); // { owoified: '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)); // { owoified: '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
owoifiedThe owoified text.