Create online courses and membership sites with Thinkific and feel confident that you've got the easiest technology and the best support in the industry.
Go to siteThe Thinkific API provides a comprehensive set of tools to help you create an engaging online course. It can be used to create automated course creation, course delivery, and course management systems. You can build a variety of different applications and integrations with Thinkific’s API, ranging from customer service to marketing to sales automation.
Here are a few examples of how you can benefit from the Thinkific API:
There are many more possibilities with the Thinkific API, giving you complete control over how you build and manage your online course. With the Thinkific API, you have full control to bring all your ideas to life.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
thinkific: {
type: "app",
app: "thinkific",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.thinkific.com/api/public/v1/courses`,
headers: {
"X-Auth-API-Key": `${this.thinkific.$auth.api_key}`,
"X-Auth-Subdomain": `${this.thinkific.$auth.subdomain}`,
"Content-Type": `application/json`,
},
})
},
})
Thinkific uses API keys for authentication. When you connect your Thinkific account, Pipedream securely stores the keys so you can easily authenticate to Thinkific APIs in both code and no-code steps.
Login to your Thinkific account, then navigate to Settings -> Code & Analytics -> API to find your API Key and your Thinkific subdomain.