Introduction

ConsentKeep Documentation

Welcome to ConsentKeep — the simplest way to collect and manage GDPR consent logs.

Quick Start

Integrate ConsentKeep in 5 minutes:

<script>
  fetch('https://api.consentkeep.com/api/v1/consent', {
    method: 'POST',
    headers: {
      'X-API-Key': 'your_api_key',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      consent_given: true,
      purposes: ['analytics'],
      origin_url: window.location.href
    })
  })
</script>