Alzheimer.App
Alzheimer.App

Connect with Alzheimer.App

Integrate the AI chatbot on your platform, or send care data to Alzheimer.App — so the AI can give a personal interpretation based on the resident's life story.

Request API key ↓ View integrations
Two integration directions

Alzheimer.App offers two kinds of API integrations: you embed our chat, or you supply data to us.

Embed the chat

Integrate the Alzheimer.App chatbot on your care platform, website or app. Residents, family caregivers and care professionals get instant access to personal AI support.

Request API key →

Supply data

Send sensor, health or care data to Alzheimer.App via our API. The chatbot combines this real-time data with the resident's psychobiography for a personal interpretation.

Register interest →
Available integrations

The following applications and platforms are available or in development as an integration with Alzheimer.App.

Beta
IoT sensors • eHealth

Real-time sensor data on sleep monitoring, activity patterns, climate and fall detection from the care facility. Alzheimer.App interprets anomalies in the context of the resident's life story.

  • Fall detection and out-of-bed events
  • Climate data (CO₂, temperature, humidity)
  • Activity patterns per zone
  • Presence and occupancy
Coming soon
Care records

Integration with common EHR systems so that care notes and medical context are directly available to the AI — with full privacy protection.

  • FHIR-compatible
  • NEN 7510 compliant
  • Multiple vendors
Coming soon
Wearables • Biometrics

Heart rate, sleep quality and movement data from wearable devices as a valuable addition to the resident's personal context.

Request an API key

Instant access to the Alzheimer.App chatbot API. Free to start — unlimited use for now, billed transparently per token later.

By requesting, you agree to our terms and conditions. You'll receive the key directly on this page. No credit card required.

API key created!

Store this key securely — you'll need it for every API call.

How to use the API:

const response = await fetch('https://ai.alzheimer.app/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-API-Key': ''
  },
  body: JSON.stringify({
    messages: [{ role: 'user', content: 'Jouw vraag hier' }],
    stream: false
  })
});
const data = await response.json();
console.log(data.choices[0].message.content);
Questions? info@alzheimer.app →