Skip to content

Instantly share code, notes, and snippets.

View tobySolutions's full-sized avatar
:octocat:
Building Software

Tobiloba Adedeji tobySolutions

:octocat:
Building Software
View GitHub Profile
@tobySolutions
tobySolutions / quote.js
Created November 19, 2024 09:25
Fleek Function Quote Example
import axios from "axios";
export const main = async (params) => {
let response = await axios.get(
"https://api.api-ninjas.com/v1/quotes?category=happiness",
{
headers: {
"X-Api-Key": "yourApiNinjasApiKey",
},
},
);