Skip to main content

The End Close API uses API keys to authenticate requests. You can view and manage your API keys in the Settings section of the End Close dashboard.

API keys are sensitive and should always be kept secret. You should not store API keys in publically accessible code such as public GitHub repositories or client-side code.

Provide your API key as the value of the Authorization header.

JavaScript
  fetch('https://api.endclose.com/{endpoint}', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      X-API-KEY: YOUR_API_KEY
    }
  })