diff --git a/js/util/wizard_api.js b/js/util/wizard_api.js index 9a903e26..aa75c44b 100644 --- a/js/util/wizard_api.js +++ b/js/util/wizard_api.js @@ -2,7 +2,12 @@ import settings from 'settings'; export function fetchWizardInitData() { - return fetch(`${settings.api.requestApiBaseURL}/foia_wizard`) + const options = { + headers: { + 'X-Api-Key': settings.api.apiProxyKey, + }, + }; + return fetch(`${settings.api.requestApiBaseURL}/foia_wizard`, options) .then((r) => r.json()); }