Get your first API call working in under 5 minutes.
Navigate to Settings > API Keys in your WISEPIM dashboard and create a new API key. Copy it somewhere safe — you won't be able to see it again.
Use the API key in the Authorization header to fetch your products. The response includes pagination, so you can iterate through your entire catalog.
Browse the full API reference to discover endpoints for products, categories, AI enrichment, integrations, and webhooks.
const response = await fetch('https://api.wisepim.com/v2/products', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
});
const products = await response.json();
console.log(`Found ${products.count} products`);