Using the Wildberries API, developers can create amazing applications for interacting with Wildberries products. This powerful API provides a powerful set of tools for searching, buying, and managing products and provides a wide range of samples and related data to make it easier to build applications. Here are a few examples of what developers can build using the Wildberries API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wildberries: {
type: "app",
app: "wildberries",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://suppliers-api.wildberries.ru/public/api/v1/info`,
headers: {
"accept": `application/json`,
"Authorization": `${this.wildberries.$auth.api_key}`,
},
params: {
quantity: `0`,
},
})
},
})
Wildberries uses API keys for authentication. When you connect your Wildberries account, Pipedream securely stores the keys so you can easily authenticate to Wildberries APIs in both code and no-code steps.
Generate and copy your API key from your Wildberry account settings.