UNPKG

ditzzsenpai-api

Version:

Simple NPM api for your app

9 lines (7 loc) 304 B
const fetch = require("node-fetch"); module.exports = async function () { dts = await fetch("https://raw.caliph.my.id/quotesanime.json"); json = await dts.json(); random = json[Math.floor(Math.random() * json.length)]; return { status: dts.status, creator: "Ditzzy", result: random }; }.bind();