Performance isn't optional. Neither are we.

Talk to Us
Documentation

How to Purge Cache on RebelBoost

RebelBoost provides two methods for purging your site's cache: manually through the dashboard or programmatically via API.

Method 1: Manual Cache Purge via Dashboard

You can manage your cache directly from the RebelBoost dashboard under the Utilities section

Purge All Cache

To clear the entire cache across your platform:

  1. Navigate to Cache Purge in the left sidebar
  2. Under "Purge All Cache", click the PURGE ALL CACHE button
  3. This will remove all cached pages and styles for your domain

Purge Cache for Specific URL

To clear the cache for a specific page:

  1. Navigate to Cache Purge in the left sidebar
  2. Under "Purge Cache for Specific URL", enter the path of the page you want to purge
    • Note: The hostname is pre-filled and cannot be modified
    • Example: novaescola.org.br/
  3. Click PURGE URL CACHE

Need access to the dashboard? See our guide on Getting Access to the RebelBoost Dashboard

Method 2: API-Based Cache Purge

For automated cache management or integration into your workflow, you can use the RebelBoost API.

Getting Your API Keys

API keys are available in the RebelBoost dashboard under API Key Management. You'll need these credentials to authenticate your API requests.

Available API Endpoints

DELETE /_rebelboost/extapi/v1/purge/all/

Purge all cache for a domain

Completely clears all cached pages and styles for the specified domain. Use this when you need to force a full refresh of all cached content across the entire site.

Request: No parameters required

Response: Returns "ok" on success (200), or error message on bad request (400)

DELETE /_rebelboost/extapi/v1/purge/page/

Purge page cache by path

Clears the cache for a specific page by providing its path. Use this when you need to refresh only a particular page without affecting other cached content.

Request Body:

{

"path": "/the/page/path"

}

Response: Returns "ok" on success (200)

For complete API documentation and interactive testing, visit: yourdomain.rebelboost.com/_rebelboost/swaggerui

Both methods provide efficient cache management to ensure your content updates are reflected immediately when needed.