Skip to content

Instantly share code, notes, and snippets.

@tobySolutions
Created November 19, 2024 09:25
Show Gist options
  • Save tobySolutions/7178b489d20259f6980ea3462d3fc8dc to your computer and use it in GitHub Desktop.
Save tobySolutions/7178b489d20259f6980ea3462d3fc8dc to your computer and use it in GitHub Desktop.
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",
},
},
);
let quote = response.data[0].quote + "\n\n" + "~" + response.data[0].author;
return quote;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment