The Thrivecart API provides a state-of-the-art shopping cart solution for creators, entrepreneurs, and marketers worldwide! With our powerful yet easy to use API, you can build anything from sophisticated e-commerce sites to automated order fulfillment systems. Here’s a few examples of what you can create with the Thrivecart API:
These are just a few of the possibilities with the Thrivecart API! With our easy-to-use API, the sky’s the limit when it comes to creating custom e-commerce solutions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
thrivecart: {
type: "app",
app: "thrivecart",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://thrivecart.com/api/external/ping`,
headers: {
Authorization: `Bearer ${this.thrivecart.$auth.api_key}`,
},
})
},
})
Thrivecart uses API keys for authentication. When you connect your Thrivecart account, Pipedream securely stores the keys so you can easily authenticate to Thrivecart APIs in both code and no-code steps.
Create an API key from your ThriveCart settings (see docs), and enter that below.