Save Big: Bundle all Skunk products and save up to 57%

SkunkCRM API Documentation

The SkunkCRM API provides programmatic access to your CRM data through RESTful endpoints.

Base URL

https://yoursite.com/wp-admin/wp-json/skunkcrm/v1/

Note: Most WordPress sites use /wp-admin/. Some custom setups may use different paths.

Features

  • RESTful API design with standard HTTP methods
  • JSON request and response format
  • WordPress Application Password authentication
  • Contact management with custom fields and statuses
  • Activity tracking (notes, calls, emails)
  • Deal value tracking and pipeline management
  • Tag and segment organization
  • Visitor tracking and analytics
  • Pagination with standard headers
  • Comprehensive error handling

Quick Start Example

// 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));