WPISTIC
Developers

The WPistic REST API and webhooks, for automating your workspace

Issue and revoke licenses, provision products across a client's sites, or react to plan changes the moment they happen — all through the same API that powers the WPistic dashboard itself.

What's available

Built for agencies and product teams automating the boring parts

Every product in the suite connects to the same workspace model, so one integration can cover licenses, activations, and usage across the 16-product catalog. Confirm each product's current event coverage in the API reference.

REST API

The wpistic/v1 namespace exposes your workspace, websites, products, and licenses over standard REST endpoints. Authenticate with an API key issued from the dashboard — no OAuth dance required for server-to-server use.

Webhooks

Subscribe to license and plan-change events instead of polling. When a subscription upgrades, downgrades, or a license gets revoked, WPistic pushes a signed payload to your endpoint in near real time.

Sandbox workspace

Every account can spin up a sandbox workspace with test licenses and fake activations, so you can build and break your integration without touching a paying customer's data.

Rate limits & auth

API keys are scoped to a single workspace and carry their own rate limit, so a runaway script in one integration can't affect another site you manage.

Example request

Authenticate with an API key, call any endpoint

Generate a key from your dashboard's Developers tab, then pass it as a bearer token. This illustrative call to the Me endpoint returns the workspace, plan, and products tied to that key.

  • Keys are scoped to one workspace and can be revoked instantly
  • Every response includes the same shape the dashboard UI consumes
curl https://yoursite.com/wp-json/wpistic/v1/me \
  -H "Authorization: Bearer wp_test_example..." \
  -H "Accept: application/json"

# 200 OK
{
  "workspace": "northloop-digital",
  "plan": "professional",
  "products": ["chatbotistic", "crmistic", "bookingistic"],
  "sites_connected": 3
}

Ready to build on WPistic?

Read the full API reference and webhook event catalogue, or grab an API key and start calling endpoints against your sandbox workspace today.