Riddle is a beautifully intuitive online quiz maker and marketing platform - allowing publishers, brands and bloggers add quizzes, personality tests, polls and more to their websites.
Go to siteRiddle Quiz Maker API lets you tap into a rich seam of interactive content, from quizzes to polls and surveys. By leveraging this API on Pipedream, you can automate interactions with your quizzes, extract responses in real-time, synchronize data across platforms, and trigger actions based on user engagement. Exploiting Pipedream's serverless platform allows you to create workflows that respond swiftly, integrate with numerous apps, and streamline content management—turning audience insights into actionable intelligence.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
riddle_quiz_maker: {
type: "app",
app: "riddle_quiz_maker",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.riddle.com/api/v2/riddle/get/types`,
headers: {
"Authorization": `Bearer ${this.riddle_quiz_maker.$auth.api_token}`,
"Key": `${this.riddle_quiz_maker.$auth.api_key}`,
},
})
},
})
Content Engagement Trigger for Email Campaigns: When a user completes a quiz, you could trigger a workflow that adds or updates their information in a Mailchimp audience list, including their quiz results. This allows for personalized follow-up emails, tailored content delivery, or segmenting users based on their preferences.
Real-time Analytics Dashboard Update: After a new set of quiz responses is collected, you could automate the transfer of this data to a Google Sheets spreadsheet. From there, it’s possible to visualize this data using tools like Google Data Studio, providing up-to-date analytics to inform marketing strategies or content creation.
Lead Scoring and CRM Integration: Use quiz results to score leads and automatically push this information into a CRM like Salesforce. Scoring can be based on the user's answers, indicating their interest level or fit for a product or service, allowing for more efficient lead prioritization and follow-up by the sales team.
Riddle Quiz Maker uses API keys for authentication. When you connect your Riddle Quiz Maker account, Pipedream securely stores the keys so you can easily authenticate to Riddle Quiz Maker APIs in both code and no-code steps.
In order to use Riddle API, first get your bearer & key:
Team: Go to Teams > Edit > Press 'Enable API'
User: Go to Account > API > Press 'Enable API'