UNPKG

frisk-images

Version:

Una API Sencilla de fotos aleatorias.

8 lines (6 loc) 210 B
const fetch = require("node-fetch"); module.exports = async function getDog() { var DataAPI = await fetch("https://dog.ceo/api/breeds/image/random") .then(res => res.json()); return DataAPI.message; }