Save Big: Bundle all Skunk products and save up to 57%
The SkunkCRM API provides programmatic access to your CRM data through RESTful endpoints.
https://yoursite.com/wp-admin/wp-json/skunkcrm/v1/
Note: Most WordPress sites use /wp-admin/. Some custom setups may use different paths.
// Basic fetch with Application Password
fetch('/wp-admin/wp-json/skunkcrm/v1/contacts', {
headers: {
'Authorization': 'Basic ' + btoa('username:app_password')
}
})
.then(response => response.json())
.then(data => console.log(data));