You will find the API token on your dashboard and the identifier of your configuration in the dashboard URL of your configuration. For example, https://www.fasterize.com/en/website_configs/1/dashboard has for configuration ID 1.
# Enable the engine curl -i -H 'Content-Type: application/json' -H 'Authorization: $myApiToken' -X PATCH https://api.fasterize.com/v1/configs/$config_id/ -d '{"status": { "fasterized": true }}' # Disable the engine curl -i -H 'Content-Type: application/json' -H 'Authorization: $myApiToken' -X PATCH https://api.fasterize.com/v1/configs/$config_id/ -d '{"status": { "fasterized": false }}'