Everything you need to know about using and building with Weareables
Set up your Weareables account and AI Pendant
Master threaded conversations and organization
How AI learns and remembers your information
Configure and use your AI Pendant device
Build with Weareables REST API
Connect external services and tools
Sign up with email or Google. This takes less than a minute and no credit card is required.
Pair your AI Pendant via Bluetooth. The pendant will automatically sync with your account.
Click "New Chat" to start your first conversation. You can speak to your pendant or type in the app.
As conversations grow, create threads to branch into focused discussions. Everything stays organized.
Visit the Memory Vault to see what AI has learned about you. You can verify and edit memories.
Connect Weareables with Zapier, Slack, or use our REST API to build custom integrations.
Get started building with our REST API. All endpoints require authentication.
const response = await fetch('/api/conversations', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
title: 'My Project Discussion',
model: 'gemini-pro'
})
});
const conversation = await response.json();const response = await fetch('/api/messages', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
conversation_id: '...',
content: 'What are the best practices for React?',
role: 'user'
})
});
const message = await response.json();const response = await fetch('/api/memories/search', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
query: 'preferences',
limit: 10
})
});
const memories = await response.json();Check out our full API documentation with SDKs for JavaScript, Python, and Go.
View Full API ReferenceCreate new threads when shifting topics. This keeps conversations organized and memories more accurate.
Review memories that AI extracted. Mark them as verified so AI becomes more confident over time.
Keep your pendant charged and connected. Real-time sync ensures you never miss an update.
Export important conversations as backups. They're saved as PDF or Markdown for easy sharing.
Integrate Weareables with your existing tools using our REST API or pre-built integrations.
Our team is here to help. Check out our support resources or contact us directly.