Marketplacer API can be used to build various types of applications. Here are some examples:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
marketplacer: {
type: "app",
app: "marketplacer",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.marketplacer.$auth.api_endpoint}/client/adverts`,
headers: {
Authorization: `Bearer ${this.marketplacer.$auth.api_key}`,
},
})
},
})
Marketplacer uses API keys for authentication. When you connect your Marketplacer account, Pipedream securely stores the keys so you can easily authenticate to Marketplacer APIs in both code and no-code steps.
Information on how to create your api_key
can be found in Getting Started.
For domain, enter your API endpoint domain such as http://bestfriendbazaar.com/api/v2