Developers

Build on Zdravo

Integrate Zdravo into your workflows. API access, webhooks, and SDKs coming Q2 2026.

Quick Start Guide

1

Sign Up for Pro

API access is included with Pro and Teams plans. Create your account to get started.

2

Generate API Key

Visit your dashboard settings to create an API key. Keep it secure, never share it in client-side code.

3

Make Your First Request

Use our REST API or JavaScript SDK to start saving and searching conversations programmatically.

API Endpoints

Base URL: https://api.zdravoai.com/v1
GET/api/v1/memoriesList all saved conversations
POST/api/v1/memoriesSave a new conversation
GET/api/v1/memories/:idRetrieve a specific conversation
POST/api/v1/searchSemantic search across memories
GET/api/v1/tagsList all auto-generated tags

Full API documentation coming soon. Join our Discord for early access.

Coming Q2 2026

Q2 2026

VS Code Extension

Capture AI conversations directly from your editor. Works with Cursor, Windsurf, and VS Code.

Q2 2026

Cursor Plugin

Native integration with Cursor IDE. One-click save of AI pair programming sessions.

Q2 2026

Webhooks

Real-time notifications for memory events. Trigger workflows when conversations are saved.

Q2 2026

OAuth for Third-Party Apps

Let users authenticate with Zdravo in your application. Secure token-based auth flow.

Code Examples

JavaScript
// 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']
  })
});
Python
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()

Ready to build?

Join our developer community. Get early access to the API and help shape the future of AI memory.

Z
ZDRAVO AI
DocsGitHubDiscordPricing