The Humor API allows you to access over 50,000 jokes and over 100,000 memes.
Rate a joke or a meme with your upvote or downvote. See the docs here.
Searches for jokes based on user-defined criteria. See the docs here.
Searches for memes based on user-defined criteria. See the docs here.
The Humor API is a tool that offers a variety of endpoints to add some laughter to your applications. Integrated into Pipedream, you can harness this API to create custom workflows that trigger actions across various services, responding to events with a light-hearted touch. Use cases may include sending jokes as icebreakers in emails, posting humorous content to social media, or integrating fun prompts into chatbots.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
humor_api: {
type: "app",
app: "humor_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.humorapi.com/memes/search`,
headers: {
"Content-Type": `application/json`,
},
params: {
keywords: `{your_keywords}`,
"api-key": `${this.humor_api.$auth.api_key}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.