API access is included with Pro and Teams plans. Create your account to get started.
Visit your dashboard settings to create an API key. Keep it secure, never share it in client-side code.
Use our REST API or JavaScript SDK to start saving and searching conversations programmatically.
Base URL: https://api.zdravoai.com/v1/api/v1/memoriesList all saved conversations/api/v1/memoriesSave a new conversation/api/v1/memories/:idRetrieve a specific conversation/api/v1/searchSemantic search across memories/api/v1/tagsList all auto-generated tagsFull API documentation coming soon. Join our Discord for early access.
Capture AI conversations directly from your editor. Works with Cursor, Windsurf, and VS Code.
Native integration with Cursor IDE. One-click save of AI pair programming sessions.
Real-time notifications for memory events. Trigger workflows when conversations are saved.
Let users authenticate with Zdravo in your application. Secure token-based auth flow.
// Save a conversation
const response = await fetch(
'https://api.zdravoai.com/v1/memories', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: 'React Hooks Discussion',
content: conversationText,
platform: 'ChatGPT',
tags: ['react', 'frontend']
})
});import requests
# Search your memories
response = requests.post(
'https://api.zdravoai.com/v1/search',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
},
json={'query': 'React performance patterns'}
)
results = response.json()