Welcome to Baybayin Transliterator API

Developed by MPOP Reverse II
Introduction

 Baybayin is a pre-spanish script used by filipino ancestors to communicate with others. And as a tribute to them, and to spread knowledge, we decided to create a simple API for baybayin, for those who want to learn baybayin. Enjoy and God bless.

This is on how to use this API (Language: NodeJS)
const axios = require("axios");

let baybay = async (text) => {
 let result = await axios.get("https://api-baybayin-transliterator.vercel.app/?text=" + text).then(r => {
  return r.data;
 }).catch(e => {
 emsp;console.error(e);
  return null;
 });
 return result;
}

module.exports = async (data) => {
 let output = await baybay(data);
 console.log(output);
}
And here's the result
{
 "original": "baybayin",
 "baybay": "ᜊᜌ᜔ᜊᜌᜒᜈ᜔"
}
Last part

 Thank you fot using and supporting this api. If ever that you want to share or you see some error, kindly email us @ Google Mail. Thank you ang God bless.